mirror of
https://github.com/uqbar-dao/nectar.git
synced 2024-12-02 08:02:23 +03:00
33 lines
838 B
TOML
33 lines
838 B
TOML
[package]
|
|
name = "key_value_worker"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[profile.release]
|
|
panic = "abort"
|
|
opt-level = "s"
|
|
lto = true
|
|
|
|
[dependencies]
|
|
anyhow = "1.0"
|
|
bincode = "1.3.3"
|
|
redb = { git = "https://github.com/uqbar-dao/redb", rev = "8e192d9" }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
thiserror = "1.0"
|
|
uqbar_process_lib = { git = "ssh://git@github.com/uqbar-dao/process_lib.git", rev = "e53c124" }
|
|
wit-bindgen = { git = "https://github.com/bytecodealliance/wit-bindgen", rev = "5390bab780733f1660d14c254ec985df2816bf1d" }
|
|
|
|
[lib]
|
|
crate-type = ["cdylib"]
|
|
|
|
[package.metadata.component]
|
|
package = "uqbar:process"
|
|
|
|
[package.metadata.component.target]
|
|
path = "wit"
|
|
|
|
[package.metadata.component.dependencies]
|