2023-10-04 04:12:13 +03:00
|
|
|
[package]
|
2023-10-19 23:24:05 +03:00
|
|
|
name = "ft_worker"
|
2023-10-04 04:12:13 +03:00
|
|
|
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"
|
2023-10-19 23:24:05 +03:00
|
|
|
rand = "0.8"
|
2023-10-04 04:12:13 +03:00
|
|
|
serde = {version = "1.0", features = ["derive"] }
|
|
|
|
serde_json = "1.0"
|
2023-11-08 03:00:09 +03:00
|
|
|
uqbar_process_lib = { git = "https://github.com/uqbar-dao/process_lib", rev = "e53c124" }
|
2023-11-07 04:56:27 +03:00
|
|
|
wit-bindgen = { git = "https://github.com/bytecodealliance/wit-bindgen", rev = "5390bab780733f1660d14c254ec985df2816bf1d" }
|
2023-10-04 04:12:13 +03:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
crate-type = ["cdylib"]
|
|
|
|
|
|
|
|
[package.metadata.component]
|
2023-11-07 04:56:27 +03:00
|
|
|
package = "uqbar:process"
|