cleanup cargo.tomls

This commit is contained in:
Carter Anderson 2020-04-06 16:13:07 -07:00
parent b1c583f500
commit 1d5388c4f0
12 changed files with 1 additions and 30 deletions

View File

@ -4,8 +4,6 @@ version = "0.1.0"
authors = ["Carter Anderson <mcanders1@gmail.com>"] authors = ["Carter Anderson <mcanders1@gmail.com>"]
edition = "2018" edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies] [dependencies]
legion = { path = "../bevy_legion", features = ["serialize"] } legion = { path = "../bevy_legion", features = ["serialize"] }
libloading = "0.5.2" libloading = "0.5.2"

View File

@ -4,8 +4,6 @@ version = "0.1.0"
authors = ["Carter Anderson <mcanders1@gmail.com>"] authors = ["Carter Anderson <mcanders1@gmail.com>"]
edition = "2018" edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies] [dependencies]
bevy_core = { path = "../bevy_core" } bevy_core = { path = "../bevy_core" }
gltf = "0.14.0" gltf = "0.14.0"

View File

@ -4,8 +4,6 @@ version = "0.1.0"
authors = ["Carter Anderson <mcanders1@gmail.com>"] authors = ["Carter Anderson <mcanders1@gmail.com>"]
edition = "2018" edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies] [dependencies]
bevy_app = { path = "../bevy_app" } bevy_app = { path = "../bevy_app" }
bevy_transform = { path = "../bevy_transform" } bevy_transform = { path = "../bevy_transform" }

View File

@ -4,16 +4,12 @@ version = "0.1.0"
authors = ["Carter Anderson <mcanders1@gmail.com>"] authors = ["Carter Anderson <mcanders1@gmail.com>"]
edition = "2018" edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib] [lib]
proc-macro = true proc-macro = true
[dependencies] [dependencies]
syn = "1.0" syn = "1.0"
proc-macro2 = "1.0" proc-macro2 = "1.0"
quote = "1.0" quote = "1.0"
Inflector = { version = "0.11.4", default-features = false } Inflector = { version = "0.11.4", default-features = false }
darling = "0.10.2" darling = "0.10.2"
[dev-dependencies]

View File

@ -4,8 +4,6 @@ version = "0.1.0"
authors = ["Carter Anderson <mcanders1@gmail.com>"] authors = ["Carter Anderson <mcanders1@gmail.com>"]
edition = "2018" edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies] [dependencies]
bevy_app = { path = "../bevy_app" } bevy_app = { path = "../bevy_app" }
bevy_core = { path = "../bevy_core" } bevy_core = { path = "../bevy_core" }

View File

@ -4,8 +4,5 @@ version = "0.1.0"
authors = ["Carter Anderson <mcanders1@gmail.com>"] authors = ["Carter Anderson <mcanders1@gmail.com>"]
edition = "2018" edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies] [dependencies]
bevy_app = { path = "../bevy_app" } bevy_app = { path = "../bevy_app" }

View File

@ -4,10 +4,8 @@ version = "0.1.0"
authors = ["Carter Anderson <mcanders1@gmail.com>"] authors = ["Carter Anderson <mcanders1@gmail.com>"]
edition = "2018" edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies] [dependencies]
# bevy # bevy
bevy_app = { path = "../bevy_app" } bevy_app = { path = "../bevy_app" }
bevy_core = { path = "../bevy_core" } bevy_core = { path = "../bevy_core" }

View File

@ -4,10 +4,7 @@ version = "0.1.0"
authors = ["Carter Anderson <mcanders1@gmail.com>"] authors = ["Carter Anderson <mcanders1@gmail.com>"]
edition = "2018" edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies] [dependencies]
legion = { path = "../bevy_legion", features = ["serialize"] } legion = { path = "../bevy_legion", features = ["serialize"] }
serde = { version = "1", features = ["derive"]} serde = { version = "1", features = ["derive"]}
erased-serde = "0.3" erased-serde = "0.3"

View File

@ -4,10 +4,7 @@ version = "0.1.0"
authors = ["Carter Anderson <mcanders1@gmail.com>"] authors = ["Carter Anderson <mcanders1@gmail.com>"]
edition = "2018" edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies] [dependencies]
bevy_app = { path = "../bevy_app" } bevy_app = { path = "../bevy_app" }
bevy_core = { path = "../bevy_core" } bevy_core = { path = "../bevy_core" }
bevy_derive = { path = "../bevy_derive" } bevy_derive = { path = "../bevy_derive" }

View File

@ -8,7 +8,6 @@ edition = "2018"
default = ["bevy_winit"] default = ["bevy_winit"]
[dependencies] [dependencies]
# bevy # bevy
bevy_app = { path = "../bevy_app", version = "0.1.0" } bevy_app = { path = "../bevy_app", version = "0.1.0" }
bevy_asset = { path = "../bevy_asset", version = "0.1.0" } bevy_asset = { path = "../bevy_asset", version = "0.1.0" }

View File

@ -4,9 +4,6 @@ version = "0.1.0"
authors = ["Carter Anderson <mcanders1@gmail.com>"] authors = ["Carter Anderson <mcanders1@gmail.com>"]
edition = "2018" edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies] [dependencies]
bevy_app = { path = "../bevy_app" } bevy_app = { path = "../bevy_app" }
uuid = { version = "0.8", features = ["v4", "serde"] } uuid = { version = "0.8", features = ["v4", "serde"] }

View File

@ -4,8 +4,6 @@ version = "0.1.0"
authors = ["Carter Anderson <mcanders1@gmail.com>"] authors = ["Carter Anderson <mcanders1@gmail.com>"]
edition = "2018" edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies] [dependencies]
bevy_app = { path = "../bevy_app" } bevy_app = { path = "../bevy_app" }
bevy_input = { path = "../bevy_input" } bevy_input = { path = "../bevy_input" }