raito
542a3ae836
This is a Rust port of the original Perl script, legacy cruft is removed and it focuses on a modern Hydra deployment. Nonetheless, it knows how to perform migrations based on the channel versions. Signed-off-by: Raito Bezarius <masterancpp@gmail.com>
40 lines
1.3 KiB
TOML
40 lines
1.3 KiB
TOML
[package]
|
|
name = "mirror-forkos"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
clap = { version = "4.5.13", features = [ "derive" ] }
|
|
indicatif = { version = "0.17.8", features = ["futures", "tokio"] }
|
|
object_store = { version = "0.10.2", features = [ "aws" ] }
|
|
regex = "1.10.6"
|
|
reqwest = { version = "0.12.5", features = ["brotli"] }
|
|
serde = "1.0.204"
|
|
tempdir = "0.3.7"
|
|
textwrap = "0.16.1"
|
|
tokio = { version = "1.39.2", features = ["full"] }
|
|
toml = "0.8.19"
|
|
nix-compat = { git = "https://github.com/tvlfyi/tvix" }
|
|
futures = "0.3.30"
|
|
anyhow = "1.0.86"
|
|
bytes = "1.7.1"
|
|
tokio-util = { version = "0.7.11", features = ["io"] }
|
|
termtree = "0.5.1"
|
|
walkdir = "2.5.0"
|
|
handlebars = "6.0.0"
|
|
serde_json = "1.0.127"
|
|
tracing = { version = "0.1.40", features = ["max_level_debug", "release_max_level_info"] }
|
|
zstd = "0.13.2"
|
|
tokio-stream = "0.1.15"
|
|
async-compression = { version = "0.4.12", features = ["tokio", "zstd"] }
|
|
digest = "0.10.7"
|
|
blake3 = { version = "1.5.4", features = ["traits-preview"] }
|
|
sha2 = "0.10.8"
|
|
hex = "0.4.3"
|
|
chrono = "0.4.38"
|
|
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
|
|
opentelemetry = "0.24.0"
|
|
opentelemetry_sdk = { version = "0.24.1", features = ["rt-tokio", "trace"] }
|
|
tracing-opentelemetry = { version = "0.25.0", features = ["metrics"] }
|
|
opentelemetry-otlp = "0.17.0"
|