2020-10-30 20:29:05 +03:00
|
|
|
[package]
|
|
|
|
name = "stepper-lib"
|
2020-11-11 14:43:26 +03:00
|
|
|
version = "0.1.3"
|
2020-10-30 20:29:05 +03:00
|
|
|
authors = ["Fluence Labs"]
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "stepper_lib"
|
|
|
|
path = "src/lib.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2020-11-03 17:43:58 +03:00
|
|
|
air-parser = { path = "../crates/air-parser" }
|
2020-10-30 20:29:05 +03:00
|
|
|
fluence = { git = "https://github.com/fluencelabs/rust-sdk", features = ["logger"] }
|
2020-12-17 21:44:24 +03:00
|
|
|
stepper-interface = { path = "../crates/stepper-interface" }
|
2020-10-30 20:29:05 +03:00
|
|
|
|
|
|
|
serde = { version = "1.0.116", features = [ "derive", "rc" ] }
|
|
|
|
serde_derive = "1.0.116"
|
|
|
|
|
|
|
|
jsonpath_lib = "0.2.5"
|
|
|
|
|
|
|
|
boolinator = "2.4.0"
|
|
|
|
log = "0.4.11"
|
|
|
|
serde_json = "1.0"
|
2020-11-17 12:02:43 +03:00
|
|
|
|
|
|
|
# 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" }
|
|
|
|
|
2020-11-01 17:20:25 +03:00
|
|
|
criterion = "0.3.3"
|
2020-12-07 20:28:26 +03:00
|
|
|
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 = []
|