veloren/common/Cargo.toml

76 lines
2.0 KiB
TOML
Raw Normal View History

2019-01-02 17:23:31 +00:00
[package]
name = "veloren-common"
2020-11-28 10:25:58 +00:00
version = "0.8.0"
2019-08-04 19:54:08 +00:00
authors = ["Joshua Barretto <joshua.s.barretto@gmail.com>", "Maciej Ćwięka <mckol363@gmail.com>", "Imbris <imbrisf@gmail.com>"]
2019-01-02 17:23:31 +00:00
edition = "2018"
2020-01-27 22:41:30 +00:00
[features]
no-assets = []
tracy = ["tracy-client"]
simd = ["vek/platform_intrinsics"]
bin_csv_export = ["csv", "structopt"]
default = ["simd"]
2020-01-27 22:41:30 +00:00
2019-01-02 17:23:31 +00:00
[dependencies]
arraygen = "0.1.13"
2020-12-16 00:07:39 +00:00
crossbeam-utils = "0.8.1"
crossbeam-channel = "0.5"
enum-iterator = "0.6"
lazy_static = "1.4.0"
num-derive = "0.3"
num-traits = "0.2"
2020-12-16 09:42:36 +00:00
ordered-float = { version = "2.0.1", default-features = false }
rand = "0.7"
2020-12-16 13:17:28 +00:00
rayon = "1.5"
roots = "0.0.6"
2020-11-10 21:39:10 +00:00
spin_sleep = "1.0"
tracing = { version = "0.1", default-features = false }
vek = { version = "0.12.0", features = ["serde"] }
uuid = { version = "0.8.1", default-features = false, features = ["serde", "v4"] }
# Assets
directories-next = "2.0"
dot_vox = "4.0"
2020-12-16 09:42:36 +00:00
image = { version = "0.23.12", default-features = false, features = ["png"] }
notify = "5.0.0-pre.3"
# Data structures
2020-12-16 13:17:28 +00:00
hashbrown = { version = "0.9", features = ["rayon", "serde", "nightly"] }
2020-12-04 22:24:56 +00:00
slotmap = { version = "0.4.0", features = ["serde", "unstable"] }
indexmap = "1.3.0"
slab = "0.4.2"
# ECS
2020-12-16 13:17:28 +00:00
specs = { git = "https://github.com/amethyst/specs.git", features = ["serde", "storage-event-control"], rev = "d4435bdf496cf322c74886ca09dd8795984919b4" }
specs-idvs = { git = "https://gitlab.com/veloren/specs-idvs.git", rev = "77048eefa5df750f44bbd1b9a13402a9f7a6cfc8" }
2019-09-03 23:00:50 +00:00
# Serde
ron = { version = "0.6", default-features = false }
serde = { version = "1.0.110", features = ["derive", "rc"] }
serde_json = "1.0.50"
serde_repr = "0.1.6"
#esv export
csv = { version = "1.1.3", optional = true }
structopt = { version = "0.3.13", optional = true }
# Tracy
tracy-client = { version = "0.10.0", optional = true }
2019-09-03 23:00:50 +00:00
[dev-dependencies]
#bench
2019-09-03 23:00:50 +00:00
criterion = "0.3"
[[bench]]
name = "chonk_benchmark"
harness = false
[[bench]]
name = "color_benchmark"
harness = false
[[bin]]
name = "csv_export"
required-features = ["bin_csv_export"]