A command-line tool for crate registry backup/export
https://shipyard.rs
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
774 B
23 lines
774 B
2 years ago
|
[package]
|
||
|
name = "registry-backup"
|
||
|
authors = ["Jonathan Strong <jstrong@shipyard.rs>"]
|
||
|
version = "0.1.0"
|
||
|
edition = "2021"
|
||
|
publish = ["shipyard-rs-public"]
|
||
|
|
||
|
[dependencies]
|
||
|
clap = { version = "3.1", default-features = false, features = ["std", "derive", "cargo"] }
|
||
|
serde = { version = "1", features = ["derive"] }
|
||
|
serde_json = "1.0.69"
|
||
|
toml = "0.5.9"
|
||
|
tempdir = "0.3.7"
|
||
|
tracing = "0.1.29"
|
||
|
tracing-subscriber = { version = "0.2.18", features = ["env-filter", "registry"] }
|
||
|
tokio = { version = "1.21", features = ["full"] }
|
||
|
reqwest = { version = "0.11", default-features = false, features = ["json", "stream", "rustls-tls", "cookies", "multipart", "gzip", "brotli", "deflate", "trust-dns"] }
|
||
|
futures = "0.3.7"
|
||
|
walkdir = "2.3"
|
||
|
num_cpus = "1.3"
|
||
|
governor = "0.4.2"
|
||
|
pretty_toa = "1"
|