marine/Cargo.toml

41 lines
954 B
TOML
Raw Normal View History

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"
crate-type = ["cdylib"]
[[bin]]
2020-04-28 02:00:20 +00:00
name = "fce"
2020-04-18 15:27:01 +00:00
path = "src/main.rs"
[dependencies]
wasmer-runtime = {git = "http://github.com/fluencelabs/wasmer"}
wasmer-runtime-core = {git = "http://github.com/fluencelabs/wasmer"}
2020-04-22 13:11:57 +00:00
wasmer-wasi = {git = "http://github.com/fluencelabs/wasmer"}
2020-04-18 15:27:01 +00:00
failure = "0.1.7"
lazy_static = "1.4.0"
sha2 = "0.8.1"
clap = "2.33.0"
exitfailure = "0.5.1"
boolinator = "2.4.0"
parity-wasm = "0.41.0"
pwasm-utils = "0.12.0"
[profile.release]
opt-level = 3
debug = false
lto = true
debug-assertions = false
overflow-checks = false
panic = "abort"