put git behind feature flag to prevent openssl woes
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2025-08-25 21:03:38 -07:00
parent a2b4980bf3
commit e05c1ddabf
2 changed files with 16 additions and 1 deletions

View File

@@ -10,7 +10,7 @@ edition = "2021"
anyhow = "1.0.75"
clap = { version = "4.4.2", features = ["derive"] }
futures = "0.3.30"
git2 = "0.20.0"
git2 = { version = "0.20.0", optional = true }
lazy-regex = "3.1.0"
rbx_asset = { path = "rbx_asset", features = ["gzip", "rustls-tls"], default-features = false }
rbx_binary = "1.0.0"
@@ -21,6 +21,10 @@ rox_compiler = { path = "rox_compiler" }
serde_json = "1.0.111"
tokio = { version = "1.35.1", features = ["macros", "rt-multi-thread", "fs"] }
[features]
default = []
git = ["dep:git2"]
[profile.release]
#lto = true
strip = true