aquavm/air/Cargo.toml

59 lines
1.2 KiB
TOML
Raw Normal View History

2020-10-30 20:29:05 +03:00
[package]
name = "air"
2021-04-28 16:05:35 +03:00
version = "0.9.0"
2020-10-30 20:29:05 +03:00
authors = ["Fluence Labs"]
edition = "2018"
publish = false
2020-10-30 20:29:05 +03:00
[lib]
name = "air"
2020-10-30 20:29:05 +03:00
path = "src/lib.rs"
2021-05-16 22:52:22 +03:00
doctest = false
2020-10-30 20:29:05 +03:00
[dependencies]
2020-11-03 17:43:58 +03:00
air-parser = { path = "../crates/air-parser" }
2020-12-22 21:05:04 +03:00
polyplets = { path = "../crates/polyplets" }
air-interpreter-interface = { path = "../crates/interpreter-interface" }
fluence = { version = "0.6.8", features = ["logger"] }
2020-10-30 20:29:05 +03:00
serde = { version = "=1.0.118", features = [ "derive", "rc" ] }
2021-01-15 00:38:58 +03:00
serde_json = "=1.0.61"
2020-10-30 20:29:05 +03:00
2021-02-18 17:30:14 +03:00
jsonpath_lib-fl = "=0.2.5"
2020-10-30 20:29:05 +03:00
boolinator = "2.4.0"
log = "0.4.11"
2021-01-15 00:38:58 +03:00
thiserror = "1.0.23"
# Keep 0.2.65 until this is resolved https://github.com/rustwasm/wasm-pack/issues/886
wasm-bindgen = "=0.2.65"
2020-10-30 20:29:05 +03:00
[dev_dependencies]
air-test-utils = { path = "../crates/test-utils" }
2021-04-28 16:05:35 +03:00
fluence-app-service = "0.7.0"
2020-10-30 20:29:05 +03:00
2020-11-01 17:20:25 +03:00
criterion = "0.3.3"
csv = "1.1.5"
2020-11-01 17:20:25 +03:00
once_cell = "1.4.1"
2020-10-30 20:29:05 +03:00
env_logger = "0.7.1"
maplit = "1.0.2"
pretty_assertions = "0.6.1"
serde_json = "1.0.56"
2020-11-01 17:20:25 +03:00
[[bench]]
name = "call_benchmark"
harness = false
[[bench]]
name = "chat_benchmark"
harness = false
[[bench]]
name = "create_service_benchmark"
harness = false
2020-10-30 20:29:05 +03:00
[features]
# indicates that this library should be compiled for the wasm bindgen target
2021-05-13 12:00:56 +03:00
# otherwise it will be compiled to the Marine target
marine = []