marine/tools/repl/Cargo.toml

28 lines
725 B
TOML
Raw Normal View History

2020-08-07 23:24:28 +03:00
[package]
2020-08-09 01:49:51 +03:00
name = "frepl"
2020-08-07 23:24:28 +03:00
description = "Fluence FCE REPL intended for testing purposes"
2020-09-16 01:43:45 +03:00
version = "0.1.5"
2020-08-07 23:24:28 +03: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]
2020-09-16 01:43:45 +03:00
fluence-app-service = { path = "../../fluence-app-service", version = "0.1.3", features = ["raw-module-api"] }
2020-08-07 23:24:28 +03:00
anyhow = "1.0.31"
clap = "2.33.1"
serde_json = "1.0.57"
2020-08-08 23:07:21 +03:00
wasmer-wasi = { package = "wasmer-wasi-fl", version = "0.17.0"}
2020-08-07 23:24:28 +03:00
2020-09-08 13:39:22 +03:00
env_logger = "0.7.1"
2020-08-09 14:48:18 +03:00
rustyline = { version = "6.1.2", features = ["with-fuzzy"] }
rustyline-derive = "0.3.1"
2020-08-07 23:24:28 +03:00
rustop = "1.1.0"
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"] }