-
Notifications
You must be signed in to change notification settings - Fork 136
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #115 from TomGillen/experimental
Rewrite of the legion crate.
- Loading branch information
Showing
89 changed files
with
12,235 additions
and
15,246 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "legion" | ||
version = "0.2.4" | ||
version = "0.3.0" | ||
description = "High performance entity component system (ECS) library" | ||
authors = ["Thomas Gillen <[email protected]>"] | ||
repository = "https://github.com/TomGillen/legion" | ||
|
@@ -14,35 +14,34 @@ edition = "2018" | |
travis-ci = { repository = "TomGillen/legion", branch = "master" } | ||
|
||
[features] | ||
default = ["par-iter", "par-schedule", "ffi"] | ||
par-iter = ["legion-core/par-iter", "legion-systems/par-iter"] | ||
par-schedule = ["legion-systems/par-schedule"] | ||
log = ["tracing/log", "tracing/log-always"] | ||
ffi = ["legion-core/ffi"] | ||
serialize = ["legion-core/serialize"] | ||
metrics = ["legion-core/metrics"] | ||
|
||
[workspace] | ||
members = [ | ||
"legion_core", | ||
"legion_systems", | ||
] | ||
default = ["par-iter", "serialize", "crossbeam-events"] | ||
par-iter = ["rayon"] | ||
extended-tuple-impls = [] | ||
serialize = ["serde", "erased-serde", "uuid/serde"] | ||
crossbeam-events = ["crossbeam-channel"] | ||
|
||
[dependencies] | ||
legion-core = { path = "legion_core", version = "0.2.4", default-features = false } | ||
legion-systems = { path = "legion_systems", version = "0.2.4", default-features = false } | ||
smallvec = "1.4" | ||
itertools = "0.9" | ||
downcast-rs = "1.2" | ||
derivative = "2.1" | ||
paste = "0.1" | ||
parking_lot = "0.11" | ||
bit-set = "0.5" | ||
tracing = "0.1" | ||
thiserror = "1.0" | ||
uuid = { version = "0.8", features = ["v4"] } | ||
rayon = { version = "1.3", optional = true } | ||
serde = { version = "1", features = ["derive"], optional = true } | ||
erased-serde = { version = "0.3", optional = true } | ||
crossbeam-channel = {version ="0.4", optional = true} | ||
|
||
[dev-dependencies] | ||
serde_json = "1.0" | ||
bincode = "1.3" | ||
tracing-subscriber = "0.2" | ||
criterion = "0.3" | ||
cgmath = "0.17" | ||
tracing-subscriber = "0.2" | ||
erased-serde = "0.3" | ||
serde = { version = "1", features = ["derive"]} | ||
uuid = { version = "0.8", features = ["v4"] } | ||
tracing = "0.1" | ||
itertools = "0.8" | ||
rayon = "1.2" | ||
crossbeam-channel = "0.4.0" | ||
|
||
[[bench]] | ||
name = "benchmarks" | ||
|
@@ -58,4 +57,4 @@ harness = false | |
|
||
[[bench]] | ||
name = "insertion" | ||
harness = false | ||
harness = false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.