forked from kemitix/git-next
Paul Campbell
5a595ec9ee
These crates have been merged into git-next-core, and tombstones published to crates.io.
28 lines
686 B
TOML
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"
|