27 lines
786 B
TOML
27 lines
786 B
TOML
[package]
|
|
name = "git-sync"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0"
|
|
bytes = "1.11.1"
|
|
clap = { version = "4.5", features = ["derive"] }
|
|
console = "0.16"
|
|
dialoguer = "0.12"
|
|
directories = "5.0"
|
|
gitlab = "0.1811.0"
|
|
hmac = "0.12"
|
|
http = "1.4.0"
|
|
octocrab = { version = "0.50.0", default-features = false, features = ["default-client", "follow-redirect", "jwt-aws-lc-rs", "retry", "rustls", "rustls-aws-lc-rs", "timeout", "tracing"] }
|
|
regex = "1.11"
|
|
reqwest = { version = "0.13", default-features = false, features = ["blocking", "json", "rustls"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
sha2 = "0.10"
|
|
tempfile = "3.13"
|
|
tiny_http = "0.12"
|
|
tokio = { version = "1.52.2", features = ["rt-multi-thread", "time"] }
|
|
toml = "0.8"
|
|
url = "2.5"
|