git-next/crates/cli/Cargo.toml
Paul Campbell 58e991b2b7
All checks were successful
Rust / build (push) Successful in 2m35s
ci/woodpecker/push/tag-created Pipeline was successful
ci/woodpecker/push/push-next Pipeline was successful
test(git): make repository more testable
Adds a layer around Repository to allow the use of a mock.

Mock has still to be implemented.
2024-05-18 20:37:03 +01:00

23 lines
430 B
TOML

[package]
name = "git-next"
version = { workspace = true }
edition = { workspace = true }
[dependencies]
git-next-server = { workspace = true }
git-next-git = { workspace = true }
# CLI parsing
clap = { workspace = true }
# fs/network
kxio = { workspace = true }
# Actors
actix-rt = { workspace = true }
[lints.clippy]
nursery = { level = "warn", priority = -1 }
# pedantic = "warn"
unwrap_used = "warn"
expect_used = "warn"