llamadb-wasm/Cargo.toml

28 lines
554 B
TOML
Raw Normal View History

2019-09-09 15:40:53 +03:00
[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"
2019-09-09 16:09:11 +03:00
fluence = { version = "0.1.8" }
2019-09-09 15:40:53 +03:00
llamadb = { git = "https://github.com/fluencelabs/llamadb.git", branch = "master" }
libsecp256k1 = "0.2.2"
sha2 = "0.8.0"