mirror of
https://github.com/fluencelabs/marine.git
synced 2024-12-12 14:55:32 +00:00
24 lines
536 B
TOML
24 lines
536 B
TOML
[package]
|
|
name = "fce-repl"
|
|
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]
|
|
fluence-app-service = { path = "../../fluence-app-service", features = ["raw-module-api"] }
|
|
|
|
anyhow = "1.0.31"
|
|
clap = "2.33.1"
|
|
serde_json = "1.0.57"
|
|
|
|
rustyline = "6.1.2"
|
|
rustop = "1.1.0"
|
|
uuid = { version = "0.8.1", features = ["v4"] }
|