mirror of
https://github.com/fluencelabs/marine.git
synced 2024-12-12 14:55:32 +00:00
30 lines
808 B
TOML
30 lines
808 B
TOML
[package]
|
|
name = "frepl"
|
|
description = "Fluence FCE REPL intended for testing purposes"
|
|
version = "0.1.24"
|
|
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]
|
|
fluence-app-service = { path = "../../fluence-app-service", version = "0.1.19", features = ["raw-module-api"] }
|
|
fluence-sdk-main = { version = "=0.2.13", features = ["logger"] }
|
|
|
|
anyhow = "1.0.31"
|
|
clap = "2.33.1"
|
|
serde_json = "1.0.57"
|
|
wasmer-wasi = { package = "wasmer-wasi-fl", version = "0.17.1"}
|
|
|
|
env_logger = "0.7.1"
|
|
log = "0.4.11"
|
|
rustyline = { version = "6.1.2", features = ["with-fuzzy"] }
|
|
rustyline-derive = "0.3.1"
|
|
rustop = "1.1.0"
|
|
itertools = "0.9.0"
|
|
uuid = { version = "0.8.1", features = ["v4"] }
|