2023-04-02 22:39:02 +02:00
|
|
|
[package]
|
|
|
|
name = "cordy"
|
2023-04-05 18:17:44 +02:00
|
|
|
version = "0.1.1"
|
2023-04-02 22:39:02 +02:00
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "cordy"
|
|
|
|
crate-type = ["cdylib"]
|
|
|
|
path = "src/lib.rs"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2023-04-03 03:18:25 +02:00
|
|
|
ctor = "0.1"
|
|
|
|
tracing = "0.1"
|
2023-04-02 22:39:02 +02:00
|
|
|
pox = { git = "ssh://git@git.fantabos.co/srv/git/pox", branch = "dev", features = ["monitor"] }
|
2023-04-03 03:18:25 +02:00
|
|
|
tokio = { version = "1.27", features = ["full"] }
|
|
|
|
tracing-subscriber = "0.3"
|
|
|
|
mlua = { version = "0.8", features = ["luajit52", "vendored", "async", "send", "serialize"] }
|
|
|
|
serde = "1.0.159"
|
|
|
|
serde_json = "1.0.95"
|
2023-04-03 19:20:25 +02:00
|
|
|
nix = "0.26.2"
|
|
|
|
pretty-hex = "0.3"
|
2023-04-06 04:18:26 +02:00
|
|
|
signal-hook = "0.3.15"
|