[package]
edition = "2024"
name = "stackless-git"
version = "0.1.7"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Git materialization helpers for stackless"
readme = false
license = "MIT"
repository = "https://github.com/snowmead/stackless"
[features]
test-support = []
[lib]
name = "stackless_git"
path = "src/lib.rs"
[[test]]
name = "flow"
path = "tests/flow.rs"
required-features = ["test-support"]
[[test]]
name = "snapshot"
path = "tests/snapshot.rs"
required-features = ["test-support"]
[dependencies.grit-lib]
version = "=0.4.8"
features = ["http-ureq"]
[dependencies.secrecy]
version = "0.10"
[dependencies.thiserror]
version = "2.0.18"
[dev-dependencies.tempfile]
version = "3.27.0"
[lints.clippy]
dbg_macro = "deny"
expect_used = "deny"
panic = "deny"
unwrap_used = "deny"
[lints.rust]
missing_debug_implementations = "warn"
unsafe_code = "forbid"