restore old files now!

This commit is contained in:
Qyriad 2026-02-16 18:02:39 +01:00
parent 76b5ac628d
commit dfdf027bc6
11 changed files with 1676 additions and 16 deletions

25
Cargo.toml Normal file
View file

@ -0,0 +1,25 @@
[package]
name = "dynix"
version = "0.1.0"
edition = "2024"
[[bin]]
name = "dynix"
path = "src/main.rs"
[lib]
name = "dynix"
path = "src/lib.rs"
[dependencies]
clap = { version = "4.5.54", features = ["color", "derive"] }
command-error = "0.8.0"
fs-err = "3.2.2"
itertools = "0.14.0"
libc = { version = "0.2.180", features = ["extra_traits"] }
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.149"
tap = "1.0.1"
tracing = { version = "0.1.44", features = ["attributes"] }
tracing-human-layer = "0.2.1"
tracing-subscriber = { version = "0.3.22", default-features = false, features = ["std", "env-filter", "fmt", "ansi", "registry", "parking_lot"] }