marine/tools/repl/Cargo.toml

36 lines
1015 B
TOML
Raw Normal View History

2020-08-07 23:24:28 +03:00
[package]
2021-05-11 15:44:11 +03:00
name = "mrepl"
2021-05-10 12:51:22 +03:00
description = "Fluence Marine REPL intended for testing purposes"
version = "0.24.0"
2020-08-07 23:24:28 +03:00
authors = ["Fluence Labs"]
2021-05-10 12:51:22 +03:00
repository = "https://github.com/fluencelabs/marine/tools/repl"
2020-08-07 23:24:28 +03:00
license = "Apache-2.0"
edition = "2021"
2020-08-07 23:24:28 +03:00
[[bin]]
2021-05-10 12:51:22 +03:00
name = "mrepl"
2020-08-07 23:24:28 +03:00
path = "src/main.rs"
[dependencies]
fluence-app-service = { path = "../../crates/fluence-app-service", version = "0.29.0", features = ["raw-module-api"] }
marine-rs-sdk-main = { version = "0.10.0", default-features = false, features = ["logger"] }
marine-wasm-backend-traits = {path = "../../crates/wasm-backend-traits", version = "0.3.0"}
2020-08-07 23:24:28 +03:00
anyhow = "1.0.75"
clap = "2.34.0"
serde = "1.0.147"
serde_json = "1.0.107"
2020-08-07 23:24:28 +03:00
env_logger = "0.10.0"
check-latest = { version = "1.0.1", optional = true }
log = "0.4.20"
rustyline = { version = "10.0.0", features = ["with-fuzzy"] }
rustyline-derive = "0.7.0"
rustop = "1.1.2"
itertools = "0.10.5"
uuid = { version = "1.4.0", features = ["v4"] }
termion = "1.5.6"
[features]
check-latest = ["dep:check-latest"]