mirror of
https://github.com/fluencelabs/llamadb-wasm
synced 2025-04-24 14:22:19 +00:00
28 lines
554 B
TOML
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"
|