mirror of
https://github.com/uqbar-dao/nectar.git
synced 2024-12-04 12:10:50 +03:00
27 lines
630 B
TOML
27 lines
630 B
TOML
[package]
|
|
name = "ft_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"
|
|
rand = "0.8"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
uqbar_process_lib = { git = "ssh://git@github.com/uqbar-dao/process_lib.git", rev = "b09d987" }
|
|
wit-bindgen = { git = "https://github.com/bytecodealliance/wit-bindgen", rev = "efcc759" }
|
|
|
|
[lib]
|
|
crate-type = ["cdylib"]
|
|
|
|
[package.metadata.component]
|
|
package = "uqbar:process"
|