2023-11-04 03:41:34 +03:00
|
|
|
[package]
|
2023-11-10 02:04:07 +03:00
|
|
|
name = "test_runner"
|
2023-11-04 03:41:34 +03:00
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
panic = "abort"
|
|
|
|
opt-level = "s"
|
|
|
|
lto = true
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
anyhow = "1.0"
|
|
|
|
bincode = "1.3.3"
|
2024-02-02 23:11:23 +03:00
|
|
|
kinode_process_lib = { git = "https://github.com/uqbar-dao/process_lib.git", tag = "v0.5.7-alpha" }
|
2023-12-12 08:47:25 +03:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2023-11-04 03:41:34 +03:00
|
|
|
serde_json = "1.0"
|
|
|
|
thiserror = "1.0"
|
2023-12-12 08:47:25 +03:00
|
|
|
wit-bindgen = { git = "https://github.com/bytecodealliance/wit-bindgen", rev = "efcc759" }
|
2023-11-04 03:41:34 +03:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
crate-type = ["cdylib"]
|
|
|
|
|
|
|
|
[package.metadata.component]
|
2024-01-16 01:51:07 +03:00
|
|
|
package = "kinode:process"
|