Skip to content

Commit

Permalink
Add crate descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
melody-rs committed Oct 19, 2024
1 parent 4665cad commit e19150e
Show file tree
Hide file tree
Showing 13 changed files with 29 additions and 9 deletions.
2 changes: 2 additions & 0 deletions crates/audio/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
[package]
name = "luminol-audio"

description = "Luminol's audio backend"

version.workspace = true
authors.workspace = true
edition.workspace = true
Expand Down
2 changes: 2 additions & 0 deletions crates/config/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
[package]
name = "luminol-config"

description = "Luminol's configuration"

version.workspace = true
authors.workspace = true
edition.workspace = true
Expand Down
2 changes: 2 additions & 0 deletions crates/core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
[package]
name = "luminol-core"

description = "The core crate of Luminol, which all of Luminol's UI is built on top of"

version.workspace = true
authors.workspace = true
edition.workspace = true
Expand Down
2 changes: 2 additions & 0 deletions crates/data/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
[package]
name = "luminol-data"

description = "Luminol's RPG Maker data structures"

version.workspace = true
authors.workspace = true
edition.workspace = true
Expand Down
12 changes: 3 additions & 9 deletions crates/eframe/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -135,10 +135,7 @@ x11 = [
__screenshot = []

[dependencies]
egui = { workspace = true, features = [
"bytemuck",
"log",
] }
egui = { workspace = true, features = ["bytemuck", "log"] }

ahash.workspace = true
document-features.workspace = true
Expand All @@ -162,11 +159,8 @@ serde = { workspace = true, optional = true }
# -------------------------------------------
# native:
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
egui-winit = { workspace = true, features = [
"clipboard",
"links",
] }
image = { workspace = true, features = ["png"] } # Needed for app icon
egui-winit = { workspace = true, features = ["clipboard", "links"] }
image = { workspace = true, features = ["png"] } # Needed for app icon
winit = { workspace = true, default-features = false, features = ["rwh_06"] }

# optional native:
Expand Down
2 changes: 2 additions & 0 deletions crates/filesystem/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
[package]
name = "luminol-filesystem"

description = "Luminol's virtual filesystem"

version.workspace = true
authors.workspace = true
edition.workspace = true
Expand Down
2 changes: 2 additions & 0 deletions crates/graphics/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
[package]
name = "luminol-graphics"

description = "Luminol's graphics backend, used for rendering sprites and tilemaps"

version.workspace = true
authors.workspace = true
edition.workspace = true
Expand Down
3 changes: 3 additions & 0 deletions crates/macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
[package]
name = "luminol-macros"

description = "Various utility macros used by Luminol"

version.workspace = true
authors.workspace = true
edition.workspace = true
Expand Down
2 changes: 2 additions & 0 deletions crates/proc-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
[package]
name = "luminol-proc-macros"

description = "Various uility proc-macros used by Luminol"

version.workspace = true
authors.workspace = true
edition.workspace = true
Expand Down
2 changes: 2 additions & 0 deletions crates/result/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
[package]
name = "luminol-result"

description = "Luminol's custom error type"

version.workspace = true
authors.workspace = true
edition.workspace = true
Expand Down
2 changes: 2 additions & 0 deletions crates/term/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
[package]
name = "luminol-term"

description = "Luminol's in-built terminal"

version.workspace = true
authors.workspace = true
edition.workspace = true
Expand Down
2 changes: 2 additions & 0 deletions crates/ui/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
[package]
name = "luminol-ui"

description = "Luminol's UI code"

version.workspace = true
authors.workspace = true
edition.workspace = true
Expand Down
3 changes: 3 additions & 0 deletions crates/web/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
[package]
name = "luminol-web"

description = "Web-specific code for running Luminol"

version.workspace = true
authors.workspace = true
edition.workspace = true
Expand Down

0 comments on commit e19150e

Please sign in to comment.