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"
|
|
|
|
version = "0.1.0"
|
|
|
|
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-08-08 22:49:51 +00:00
|
|
|
fluence-app-service = { path = "../../fluence-app-service", version = "0.1.0", features = ["raw-module-api"] }
|
2020-08-07 20:24:28 +00:00
|
|
|
|
|
|
|
anyhow = "1.0.31"
|
|
|
|
clap = "2.33.1"
|
|
|
|
serde_json = "1.0.57"
|
2020-08-08 20:07:21 +00:00
|
|
|
wasmer-wasi = { package = "wasmer-wasi-fl", version = "0.17.0"}
|
2020-08-07 20:24:28 +00:00
|
|
|
|
|
|
|
rustyline = "6.1.2"
|
2020-08-09 11:14:03 +00:00
|
|
|
rustyline-derive = "0.3.1"
|
2020-08-07 20:24:28 +00:00
|
|
|
rustop = "1.1.0"
|
|
|
|
uuid = { version = "0.8.1", features = ["v4"] }
|