23 lines
516 B
TOML
23 lines
516 B
TOML
[package]
|
|
name = "oxforge"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
# This section defines the library component (the MDK)
|
|
[lib]
|
|
name = "oxforge"
|
|
path = "src/lib.rs"
|
|
|
|
# This section defines the binary component (the command-line tool)
|
|
[[bin]]
|
|
name = "oxforge"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
clap = { version = "4.5.48", features = ["derive"] }
|
|
crossbeam-channel = "0.5.12"
|
|
serde = { version = "1.0.228", features = ["derive"] }
|
|
toml = "0.9.7"
|
|
uuid = { version = "1.18.1", features = ["v4", "serde"] }
|
|
zip = "5.1.1"
|