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-09-13 22:41:30 +03:00
|
|
|
version = "0.24.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"
|
2023-03-15 00:43:51 +03:00
|
|
|
edition = "2021"
|
2020-08-07 23:24:28 +03:00
|
|
|
|
|
|
|
[[bin]]
|
2021-05-10 12:51:22 +03:00
|
|
|
name = "mrepl"
|
2020-08-07 23:24:28 +03:00
|
|
|
path = "src/main.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2023-09-13 19:14:24 +03:00
|
|
|
fluence-app-service = { path = "../../crates/fluence-app-service", version = "0.29.0", features = ["raw-module-api"] }
|
|
|
|
marine-rs-sdk-main = { version = "0.10.0", default-features = false, features = ["logger"] }
|
2023-07-25 21:57:16 +03:00
|
|
|
marine-wasm-backend-traits = {path = "../../crates/wasm-backend-traits", version = "0.3.0"}
|
2020-08-07 23:24:28 +03:00
|
|
|
|
2023-07-11 20:42:35 +03:00
|
|
|
anyhow = "1.0.71"
|
2022-09-02 18:48:25 +03:00
|
|
|
clap = "2.34.0"
|
2022-11-28 18:37:07 +03:00
|
|
|
serde = "1.0.147"
|
2023-10-23 15:18:40 +03:00
|
|
|
serde_json = "1.0.107"
|
2020-08-07 23:24:28 +03:00
|
|
|
|
2023-07-11 19:26:46 +03:00
|
|
|
env_logger = "0.10.0"
|
2023-02-10 19:13:20 +02:00
|
|
|
check-latest = { version = "1.0.1", optional = true }
|
2023-10-23 15:17:38 +03:00
|
|
|
log = "0.4.20"
|
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"
|
2023-07-11 19:29:24 +03:00
|
|
|
uuid = { version = "1.4.0", features = ["v4"] }
|
2021-04-09 10:41:54 +03:00
|
|
|
termion = "1.5.6"
|
2023-02-10 19:13:20 +02:00
|
|
|
|
|
|
|
[features]
|
|
|
|
check-latest = ["dep:check-latest"]
|