mirror of
https://github.com/uqbar-dao/nectar.git
synced 2024-12-30 20:11:43 +03:00
34 lines
902 B
TOML
34 lines
902 B
TOML
[package]
|
|
name = "sqlite_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"
|
|
base64 = "0.13"
|
|
bincode = "1.3.3"
|
|
rusqlite = { git = "https://github.com/uqbar-dao/rusqlite", rev = "8fb20a9", features = ["bundled", "wasm32-wasi-vfs"] }
|
|
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 = "5e1b94a" }
|
|
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]
|