nectar/modules/terminal/Cargo.toml

26 lines
616 B
TOML
Raw Normal View History

2023-10-02 23:02:53 +03:00
[package]
name = "terminal"
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-12-12 08:47:25 +03:00
serde = { version = "1.0", features = ["derive"] }
2023-10-02 23:02:53 +03:00
serde_json = "1.0"
2023-12-16 00:21:06 +03:00
uqbar_process_lib = { git = "ssh://git@github.com/uqbar-dao/process_lib.git", rev = "1ce0d41" }
2023-12-12 08:47:25 +03:00
wit-bindgen = { git = "https://github.com/bytecodealliance/wit-bindgen", rev = "efcc759" }
2023-10-02 23:02:53 +03:00
[lib]
crate-type = ["cdylib"]
[package.metadata.component]
package = "uqbar:process"