aquavm/Cargo.toml

26 lines
498 B
TOML
Raw Normal View History

2020-09-21 14:11:09 +03:00
[package]
name = "aquamarine"
version = "0.1.0"
authors = ["Fluence Labs"]
edition = "2018"
2020-09-30 11:42:18 +03:00
[lib]
crate-type = ["cdylib"]
2020-09-21 14:11:09 +03:00
[[bin]]
name = "aquamarine"
path = "src/main.rs"
2020-09-28 15:40:27 +03:00
[[bin]]
name = "aqua_test_module"
path = "test_module/main.rs"
2020-09-21 14:11:09 +03:00
[dependencies]
2020-09-28 18:21:23 +03:00
fluence = { git = "https://github.com/fluencelabs/rust-sdk", features = ["logger"] }
2020-09-28 15:40:27 +03:00
serde = { version = "1.0.116", features = ["derive"] }
2020-09-24 12:55:29 +03:00
serde_derive = "1.0.116"
2020-09-28 15:40:27 +03:00
serde_sexpr = "0.1.0"
2020-09-21 14:11:09 +03:00
log = "0.4.11"
2020-09-30 11:42:18 +03:00
serde_json = "1.0"
wasm-bindgen = "0.2.68"