aquavm/interpreter-lib/Cargo.toml

57 lines
1.2 KiB
TOML
Raw Normal View History

2020-10-30 20:29:05 +03:00
[package]
2021-02-17 23:36:36 +03:00
name = "interpreter-lib"
version = "0.8.0"
2020-10-30 20:29:05 +03:00
authors = ["Fluence Labs"]
edition = "2018"
[lib]
2021-02-17 23:36:36 +03:00
name = "interpreter_lib"
2020-10-30 20:29:05 +03:00
path = "src/lib.rs"
[dependencies]
2020-11-03 17:43:58 +03:00
air-parser = { path = "../crates/air-parser" }
2021-04-26 14:44:23 +03:00
fluence = { git = "https://github.com/fluencelabs/rust-sdk", features = ["logger"] }
2020-12-22 21:05:04 +03:00
polyplets = { path = "../crates/polyplets" }
2021-02-17 23:36:36 +03:00
aqua-interpreter-interface = { path = "../crates/interpreter-interface" }
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]
aqua-test-utils = { path = "../crates/test-utils" }
2021-03-01 11:09:41 +03:00
fluence-app-service = "0.5.1"
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
# otherwise it will be compiled to the FCE target
fce = []