2020-08-07 23:24:28 +03:00
|
|
|
[package]
|
2021-05-11 15:44:11 +03:00
|
|
|
name = "mrepl"
|
2021-05-10 12:51:22 +03:00
|
|
|
description = "Fluence Marine REPL intended for testing purposes"
|
2023-02-08 16:13:40 +02:00
|
|
|
version = "0.19.0"
|
2020-08-07 23:24:28 +03:00
|
|
|
authors = ["Fluence Labs"]
|
2021-05-10 12:51:22 +03:00
|
|
|
repository = "https://github.com/fluencelabs/marine/tools/repl"
|
2020-08-07 23:24:28 +03:00
|
|
|
license = "Apache-2.0"
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[[bin]]
|
2021-05-10 12:51:22 +03:00
|
|
|
name = "mrepl"
|
2020-08-07 23:24:28 +03:00
|
|
|
path = "src/main.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2022-12-06 16:52:49 +03:00
|
|
|
fluence-app-service = { path = "../../crates/fluence-app-service", version = "0.23.0", features = ["raw-module-api"] }
|
2022-09-09 18:55:35 +03:00
|
|
|
marine-rs-sdk-main = { version = "0.7.1", features = ["logger"] }
|
2020-08-07 23:24:28 +03:00
|
|
|
|
2022-11-28 18:37:07 +03:00
|
|
|
anyhow = "1.0.66"
|
2022-09-02 18:48:25 +03:00
|
|
|
clap = "2.34.0"
|
2022-11-28 18:37:07 +03:00
|
|
|
serde = "1.0.147"
|
|
|
|
serde_json = "1.0.89"
|
2020-12-04 08:29:43 +03:00
|
|
|
wasmer-wasi = { package = "wasmer-wasi-fl", version = "0.17.1"}
|
2020-08-07 23:24:28 +03:00
|
|
|
|
2022-11-28 18:37:07 +03:00
|
|
|
env_logger = "0.9.3"
|
2022-09-02 18:48:25 +03:00
|
|
|
check-latest = "1.0.1"
|
|
|
|
log = "0.4.17"
|
2022-09-08 00:42:29 +03:00
|
|
|
rustyline = { version = "10.0.0", features = ["with-fuzzy"] }
|
2022-09-02 18:48:25 +03:00
|
|
|
rustyline-derive = "0.7.0"
|
|
|
|
rustop = "1.1.2"
|
2022-11-28 18:37:07 +03:00
|
|
|
itertools = "0.10.5"
|
|
|
|
uuid = { version = "1.2.2", features = ["v4"] }
|
2021-04-09 10:41:54 +03:00
|
|
|
termion = "1.5.6"
|