diff --git a/bevy_app/Cargo.toml b/bevy_app/Cargo.toml index 30c2cd5d9c..18b8b17d00 100644 --- a/bevy_app/Cargo.toml +++ b/bevy_app/Cargo.toml @@ -4,8 +4,6 @@ version = "0.1.0" authors = ["Carter Anderson "] edition = "2018" -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html - [dependencies] legion = { path = "../bevy_legion", features = ["serialize"] } libloading = "0.5.2" diff --git a/bevy_asset/Cargo.toml b/bevy_asset/Cargo.toml index 445e562392..da2f9379b5 100644 --- a/bevy_asset/Cargo.toml +++ b/bevy_asset/Cargo.toml @@ -4,8 +4,6 @@ version = "0.1.0" authors = ["Carter Anderson "] edition = "2018" -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html - [dependencies] bevy_core = { path = "../bevy_core" } gltf = "0.14.0" \ No newline at end of file diff --git a/bevy_core/Cargo.toml b/bevy_core/Cargo.toml index 2e424687d6..53c18a679a 100644 --- a/bevy_core/Cargo.toml +++ b/bevy_core/Cargo.toml @@ -4,8 +4,6 @@ version = "0.1.0" authors = ["Carter Anderson "] edition = "2018" -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html - [dependencies] bevy_app = { path = "../bevy_app" } bevy_transform = { path = "../bevy_transform" } diff --git a/bevy_derive/Cargo.toml b/bevy_derive/Cargo.toml index fe84b0c850..121b673ff3 100644 --- a/bevy_derive/Cargo.toml +++ b/bevy_derive/Cargo.toml @@ -4,16 +4,12 @@ version = "0.1.0" authors = ["Carter Anderson "] edition = "2018" -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [lib] proc-macro = true [dependencies] - syn = "1.0" proc-macro2 = "1.0" quote = "1.0" Inflector = { version = "0.11.4", default-features = false } -darling = "0.10.2" - -[dev-dependencies] \ No newline at end of file +darling = "0.10.2" \ No newline at end of file diff --git a/bevy_diagnostic/Cargo.toml b/bevy_diagnostic/Cargo.toml index 42110f1cbf..3b51293eec 100644 --- a/bevy_diagnostic/Cargo.toml +++ b/bevy_diagnostic/Cargo.toml @@ -4,8 +4,6 @@ version = "0.1.0" authors = ["Carter Anderson "] edition = "2018" -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html - [dependencies] bevy_app = { path = "../bevy_app" } bevy_core = { path = "../bevy_core" } diff --git a/bevy_input/Cargo.toml b/bevy_input/Cargo.toml index 21ab4b3136..6efbcc8869 100644 --- a/bevy_input/Cargo.toml +++ b/bevy_input/Cargo.toml @@ -4,8 +4,5 @@ version = "0.1.0" authors = ["Carter Anderson "] edition = "2018" -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html - [dependencies] - bevy_app = { path = "../bevy_app" } diff --git a/bevy_render/Cargo.toml b/bevy_render/Cargo.toml index be1f229122..979b9f6741 100644 --- a/bevy_render/Cargo.toml +++ b/bevy_render/Cargo.toml @@ -4,10 +4,8 @@ version = "0.1.0" authors = ["Carter Anderson "] edition = "2018" -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] - # bevy bevy_app = { path = "../bevy_app" } bevy_core = { path = "../bevy_core" } diff --git a/bevy_serialization/Cargo.toml b/bevy_serialization/Cargo.toml index 994dc7cce1..3a1c31ee85 100644 --- a/bevy_serialization/Cargo.toml +++ b/bevy_serialization/Cargo.toml @@ -4,10 +4,7 @@ version = "0.1.0" authors = ["Carter Anderson "] edition = "2018" -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html - [dependencies] - legion = { path = "../bevy_legion", features = ["serialize"] } serde = { version = "1", features = ["derive"]} erased-serde = "0.3" diff --git a/bevy_ui/Cargo.toml b/bevy_ui/Cargo.toml index 514d297638..276b996365 100644 --- a/bevy_ui/Cargo.toml +++ b/bevy_ui/Cargo.toml @@ -4,10 +4,7 @@ version = "0.1.0" authors = ["Carter Anderson "] edition = "2018" -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html - [dependencies] - bevy_app = { path = "../bevy_app" } bevy_core = { path = "../bevy_core" } bevy_derive = { path = "../bevy_derive" } diff --git a/bevy_wgpu/Cargo.toml b/bevy_wgpu/Cargo.toml index b3aac96195..a9104d5b56 100644 --- a/bevy_wgpu/Cargo.toml +++ b/bevy_wgpu/Cargo.toml @@ -8,7 +8,6 @@ edition = "2018" default = ["bevy_winit"] [dependencies] - # bevy bevy_app = { path = "../bevy_app", version = "0.1.0" } bevy_asset = { path = "../bevy_asset", version = "0.1.0" } diff --git a/bevy_window/Cargo.toml b/bevy_window/Cargo.toml index e6241e77d8..691877ea9d 100644 --- a/bevy_window/Cargo.toml +++ b/bevy_window/Cargo.toml @@ -4,9 +4,6 @@ version = "0.1.0" authors = ["Carter Anderson "] edition = "2018" -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html - [dependencies] - bevy_app = { path = "../bevy_app" } uuid = { version = "0.8", features = ["v4", "serde"] } \ No newline at end of file diff --git a/bevy_winit/Cargo.toml b/bevy_winit/Cargo.toml index d78bd1f3ef..a2902c23af 100644 --- a/bevy_winit/Cargo.toml +++ b/bevy_winit/Cargo.toml @@ -4,8 +4,6 @@ version = "0.1.0" authors = ["Carter Anderson "] edition = "2018" -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html - [dependencies] bevy_app = { path = "../bevy_app" } bevy_input = { path = "../bevy_input" }