upgrade some dependencies to remove redundancies
This commit is contained in:
parent
c5a78d4616
commit
29ad64f1d8
@ -41,7 +41,7 @@ erased-serde = "0.3"
|
||||
serde = { version = "1", features = ["derive"]}
|
||||
uuid = { version = "0.8", features = ["v4", "serde"] }
|
||||
tracing = "0.1"
|
||||
itertools = "0.8"
|
||||
itertools = "0.9"
|
||||
rayon = "1.2"
|
||||
crossbeam-channel = "0.4.2"
|
||||
|
||||
|
||||
@ -21,12 +21,12 @@ serialize = ["serde"]
|
||||
[dependencies]
|
||||
parking_lot = "0.10"
|
||||
downcast-rs = "1.0"
|
||||
itertools = "0.8"
|
||||
itertools = "0.9"
|
||||
rayon = { version = "1.2", optional = true }
|
||||
crossbeam-queue = { version = "0.2.0", optional = true }
|
||||
crossbeam-channel = "0.4.2"
|
||||
derivative = "1"
|
||||
smallvec = "1.2"
|
||||
derivative = "2.1"
|
||||
smallvec = "1.4"
|
||||
tracing = "0.1"
|
||||
metrics = { version = "0.12", optional = true }
|
||||
serde = { version = "1", optional = true }
|
||||
@ -41,5 +41,5 @@ erased-serde = "0.3"
|
||||
serde = { version = "1", features = ["derive"]}
|
||||
uuid = { version = "0.8", features = ["v4", "serde"] }
|
||||
tracing = "0.1"
|
||||
itertools = "0.8"
|
||||
itertools = "0.9"
|
||||
rayon = "1.2"
|
||||
|
||||
@ -22,11 +22,11 @@ more-system-fns = []
|
||||
legion-core = { path = "../legion_core", version = "0.2.1", default-features = false }
|
||||
|
||||
downcast-rs = "1.0"
|
||||
itertools = "0.8"
|
||||
itertools = "0.9"
|
||||
rayon = { version = "1.2", optional = true }
|
||||
crossbeam-queue = { version = "0.2.0", optional = true }
|
||||
crossbeam-channel = "0.4.0"
|
||||
derivative = "1"
|
||||
derivative = "2.1"
|
||||
bit-set = "0.5"
|
||||
paste = "0.1"
|
||||
tracing = "0.1"
|
||||
|
||||
@ -21,6 +21,7 @@ Here are the changes made:
|
||||
* Add system_fn.rs containing "function only" system declarations
|
||||
* ResourceTypeId, ComponentTypeId, TagTypeId use static str (std::any::type_name) instead of TypeId (std::any::TypeId is not constant across rust binaries)
|
||||
* Implement "DowncastTypeName" to allow downcasting based on type name
|
||||
* Upgraded derivative, smallvec, itertools to eliminate redundant dependencies
|
||||
|
||||
## Benchmarks
|
||||
|
||||
|
||||
@ -12,7 +12,7 @@ glam = { path = "../bevy_glam" }
|
||||
log = "0.4"
|
||||
rayon = "1.2"
|
||||
serde = { version = "1", features = ["derive"] }
|
||||
smallvec = "0.6"
|
||||
smallvec = "1.4"
|
||||
shrinkwraprs = "0.2"
|
||||
|
||||
[dev-dependencies]
|
||||
|
||||
Loading…
Reference in New Issue
Block a user