git-next/crates/cli/Cargo.toml
Paul Campbell 870ef7209c
Some checks failed
Rust / build (push) Failing after 5s
ci/woodpecker/push/cron-docker-builder Pipeline was successful
ci/woodpecker/push/push-next Pipeline was successful
ci/woodpecker/push/tag-created Pipeline was successful
refactor: merge actor-macros into core
Starting to flatten the crates.
2024-07-24 09:04:21 +01:00

28 lines
686 B
TOML

[package]
name = "git-next"
version = { workspace = true }
edition = { workspace = true }
license = { workspace = true }
repository = { workspace = true }
description = "git-next, the trunk-based development manager"
authors = { workspace = true }
rust-version = { workspace = true }
documentation = { workspace = true }
keywords = { workspace = true }
categories = { workspace = true }
[dependencies]
git-next-core = { workspace = true }
git-next-server = { workspace = true }
# CLI parsing
clap = { workspace = true }
# fs/network
kxio = { workspace = true }
[lints.clippy]
nursery = { level = "warn", priority = -1 }
# pedantic = "warn"
unwrap_used = "warn"
expect_used = "warn"