llamadb-wasm/Cargo.toml
2019-09-09 16:09:11 +03:00

28 lines
554 B
TOML

[package]
name = "llama_db"
version = "0.1.0"
authors = ["Fluence Labs"]
publish = false
description = "LlamaDb wrapper for running into Fluence WasmVm"
edition = "2018"
[profile.release]
debug = false
lto = true
opt-level = 3
debug-assertions = false
overflow-checks = false
panic = "abort"
[lib]
name = "llama_db"
path = "src/lib.rs"
crate-type = ["cdylib"]
[dependencies]
lazy_static = "1.1.0"
fluence = { version = "0.1.8" }
llamadb = { git = "https://github.com/fluencelabs/llamadb.git", branch = "master" }
libsecp256k1 = "0.2.2"
sha2 = "0.8.0"