2020-04-18 15:27:01 +00:00
|
|
|
[package]
|
2020-04-28 02:00:20 +00:00
|
|
|
name = "FCE"
|
|
|
|
description = "Fluence compute engine, virtual machine based on Wasmer for the Fluence network"
|
2020-04-18 15:27:01 +00:00
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Fluence Labs"]
|
|
|
|
edition = "2018"
|
|
|
|
license = "Apache-2.0"
|
|
|
|
keywords = ["fluence", "webassembly", "wasmer", "execution environment"]
|
|
|
|
categories = ["webassembly"]
|
|
|
|
maintenance = { status = "actively-developed" }
|
|
|
|
|
|
|
|
[lib]
|
2020-04-28 02:00:20 +00:00
|
|
|
name = "fce"
|
2020-04-18 15:27:01 +00:00
|
|
|
path = "src/lib.rs"
|
2020-05-02 15:34:48 +00:00
|
|
|
#crate-type = ["cdylib"]
|
2020-04-18 15:27:01 +00:00
|
|
|
|
|
|
|
[[bin]]
|
2020-05-02 15:34:48 +00:00
|
|
|
name = "fce_cli"
|
2020-04-18 15:27:01 +00:00
|
|
|
path = "src/main.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2020-05-02 09:31:31 +00:00
|
|
|
wasmer-runtime = { git = "http://github.com/fluencelabs/wasmer", branch = "fluence" }
|
|
|
|
wasmer-runtime-core = { git = "http://github.com/fluencelabs/wasmer", branch = "fluence" }
|
|
|
|
wasmer-wasi = { git = "http://github.com/fluencelabs/wasmer", branch = "fluence" }
|
2020-04-18 15:27:01 +00:00
|
|
|
failure = "0.1.7"
|
|
|
|
lazy_static = "1.4.0"
|
|
|
|
sha2 = "0.8.1"
|
2020-04-28 19:12:52 +00:00
|
|
|
rustyline = "6.1.2"
|
2020-04-18 15:27:01 +00:00
|
|
|
exitfailure = "0.5.1"
|
|
|
|
boolinator = "2.4.0"
|
|
|
|
parity-wasm = "0.41.0"
|
|
|
|
pwasm-utils = "0.12.0"
|
2020-05-02 15:34:48 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
reqwest = "0.10.4"
|
|
|
|
bytes = "0.5.4"
|
|
|
|
tokio = { version = "0.2.20", features = ["blocking", "macros"] }
|
2020-04-18 15:27:01 +00:00
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
opt-level = 3
|
|
|
|
debug = false
|
|
|
|
lto = true
|
|
|
|
debug-assertions = false
|
|
|
|
overflow-checks = false
|
|
|
|
panic = "abort"
|