feat: initial commit, add fs revision storage and reporter

This commit is contained in:
2026-02-02 00:22:51 -08:00
commit c48880d0ca
9 changed files with 1228 additions and 0 deletions

21
Cargo.toml Normal file
View File

@@ -0,0 +1,21 @@
[package]
name = "minecraft-sync"
version = "0.1.0"
edition = "2024"
[dependencies]
clap = { version = "4.5.56", features = ["derive"] }
dirs = "6.0.0"
flate2 = "1.1.8"
indicatif = "0.18.3"
tar = "0.4.44"
tempfile = "3.24.0"
thiserror = "2.0.18"
thiserror-ext = "0.3.0"
tracing = "0.1.44"
tracing-subscriber = { version = "0.3.22", features = ["env-filter"] }
walkdir = "2.5.0"
[profile.dev-fast]
inherits = "dev"
opt-level = 2