marine/tools/repl/Cargo.toml

32 lines
875 B
TOML
Raw Normal View History

2020-08-07 20:24:28 +00:00
[package]
2020-08-08 22:49:51 +00:00
name = "frepl"
2020-08-07 20:24:28 +00:00
description = "Fluence FCE REPL intended for testing purposes"
2021-03-16 10:51:59 +00:00
version = "0.6.0"
2020-08-07 20:24:28 +00:00
authors = ["Fluence Labs"]
repository = "https://github.com/fluencelabs/fce/tools/repl"
license = "Apache-2.0"
edition = "2018"
[[bin]]
name = "fce-repl"
path = "src/main.rs"
[dependencies]
2021-03-16 10:51:59 +00:00
fluence-app-service = { path = "../../fluence-app-service", version = "0.6.0", features = ["raw-module-api"] }
2021-04-11 21:21:47 +00:00
fluence-sdk-main = { git = "https://github.com/fluencelabs/rust-sdk", features = ["logger"] }
2020-08-07 20:24:28 +00: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 20:24:28 +00:00
2020-09-08 10:39:22 +00:00
env_logger = "0.7.1"
check-latest = "1.0.0"
2021-02-28 16:31:53 +00:00
log = "0.4.14"
2020-08-09 11:48:18 +00:00
rustyline = { version = "6.1.2", features = ["with-fuzzy"] }
rustyline-derive = "0.3.1"
2021-02-04 21:28:12 +00:00
rustop = "1.1.1"
2020-09-02 22:36:44 +00:00
itertools = "0.9.0"
2020-08-07 20:24:28 +00:00
uuid = { version = "0.8.1", features = ["v4"] }
termion = "1.5.6"