22 lines
495 B
TOML
22 lines
495 B
TOML
[package]
|
|
name = "git-next"
|
|
version = { workspace = true }
|
|
edition = { workspace = true }
|
|
license = { workspace = true }
|
|
repository = { workspace = true }
|
|
description = "CLI support for git-next, the trunk-based development manager"
|
|
|
|
[dependencies]
|
|
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"
|