mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
ee7fb990c3
Added a plugin system based on wasmer-runtime - Support Action (Print handled) - Support Events (PluginLoadEvent handled)
85 lines
2.1 KiB
TOML
85 lines
2.1 KiB
TOML
[package]
|
|
name = "veloren-common"
|
|
version = "0.8.0"
|
|
authors = ["Joshua Barretto <joshua.s.barretto@gmail.com>", "Maciej Ćwięka <mckol363@gmail.com>", "Imbris <imbrisf@gmail.com>"]
|
|
edition = "2018"
|
|
|
|
[features]
|
|
no-assets = []
|
|
tracy = ["tracy-client"]
|
|
simd = ["vek/platform_intrinsics"]
|
|
bin_csv_export = ["csv", "structopt"]
|
|
|
|
default = ["simd"]
|
|
|
|
[dependencies]
|
|
arraygen = "0.1.13"
|
|
crossbeam = "0.7"
|
|
enum-iterator = "0.6"
|
|
lazy_static = "1.4.0"
|
|
num-derive = "0.3"
|
|
num-traits = "0.2"
|
|
ordered-float = { version = "2.0.0", default-features = false }
|
|
parking_lot = "0.11.0"
|
|
rand = "0.7"
|
|
rayon = "1.3.0"
|
|
roots = "0.0.6"
|
|
spin_sleep = "1.0"
|
|
sum_type = "0.2.0"
|
|
tracing = { version = "0.1", default-features = false }
|
|
vek = { version = "0.12.0", features = ["serde"] }
|
|
|
|
# Assets
|
|
directories-next = "2.0"
|
|
dot_vox = "4.0"
|
|
image = { version = "0.23.8", default-features = false, features = ["png"] }
|
|
notify = "5.0.0-pre.3"
|
|
tar = "0.4.30"
|
|
|
|
# Auth
|
|
authc = { git = "https://gitlab.com/veloren/auth.git", rev = "b943c85e4a38f5ec60cd18c34c73097640162bfe" }
|
|
|
|
# Data structures
|
|
hashbrown = { version = "0.7.2", features = ["rayon", "serde", "nightly"] }
|
|
slotmap = { version = "0.4.0", features = ["serde", "unstable"] }
|
|
indexmap = "1.3.0"
|
|
slab = "0.4.2"
|
|
|
|
# ECS
|
|
specs = { git = "https://github.com/amethyst/specs.git", features = ["serde", "storage-event-control"], rev = "7a2e348ab2223818bad487695c66c43db88050a5" }
|
|
specs-idvs = { git = "https://gitlab.com/veloren/specs-idvs.git", branch = "specs-git" }
|
|
|
|
# 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"
|
|
toml = "0.5.7"
|
|
|
|
#esv export
|
|
csv = { version = "1.1.3", optional = true }
|
|
structopt = { version = "0.3.13", optional = true }
|
|
|
|
# Tracy
|
|
tracy-client = { version = "0.9.0", optional = true }
|
|
|
|
# Plugins
|
|
wasmer-runtime = "0.17.1"
|
|
bincode = "1.3.1"
|
|
common-api = {path = "./common-api"}
|
|
|
|
[dev-dependencies]
|
|
#bench
|
|
criterion = "0.3"
|
|
|
|
[[bench]]
|
|
name = "chonk_benchmark"
|
|
harness = false
|
|
|
|
[[bench]]
|
|
name = "color_benchmark"
|
|
harness = false
|
|
|
|
[[bin]]
|
|
name = "csv_export"
|
|
required-features = ["bin_csv_export"] |