26 lines
476 B
TOML
26 lines
476 B
TOML
[package]
|
|
name = "archive"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
authors = ["409"]
|
|
default-run = "archive-server"
|
|
|
|
[dependencies]
|
|
bon = "3.6.4"
|
|
bytes = "1.10.1"
|
|
byteyarn = "0.5.1"
|
|
clap = { version = "4.5.40", features = ["derive"] }
|
|
env_logger = "0.11.8"
|
|
log = "0.4.27"
|
|
shell-words = "1.1.0"
|
|
thiserror = "2.0.12"
|
|
tokio = { version = "1.45.1", features = ["full"] }
|
|
|
|
[[bin]]
|
|
name = "archive-server"
|
|
path = "src/bin/server.rs"
|
|
|
|
[[bin]]
|
|
name = "archive-cli"
|
|
path = "src/bin/cli.rs"
|