marine/tools/repl/Cargo.toml

32 lines
851 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.7.4"
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 = "2018"
[[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 = "../../fluence-app-service", version = "0.7.4", features = ["raw-module-api"] }
2021-06-16 09:37:45 +03:00
marine-rs-sdk-main = { version = "0.6.10", features = ["logger"] }
2020-08-07 23:24:28 +03:00
anyhow = "1.0.31"
clap = "2.33.1"
serde_json = "1.0.57"
wasmer-wasi = { package = "wasmer-wasi-fl", version = "0.17.1"}
2020-08-07 23:24:28 +03:00
2020-09-08 13:39:22 +03:00
env_logger = "0.7.1"
check-latest = "1.0.0"
2021-02-28 19:31:53 +03:00
log = "0.4.14"
2020-08-09 14:48:18 +03:00
rustyline = { version = "6.1.2", features = ["with-fuzzy"] }
rustyline-derive = "0.3.1"
2021-02-05 00:28:12 +03:00
rustop = "1.1.1"
2020-09-03 01:36:44 +03:00
itertools = "0.9.0"
2020-08-07 23:24:28 +03:00
uuid = { version = "0.8.1", features = ["v4"] }
termion = "1.5.6"