git-next/Cargo.toml

31 lines
566 B
TOML
Raw Normal View History

2024-04-06 17:39:56 +01:00
[package]
name = "git-next"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2024-04-06 18:52:17 +01:00
# CLI parsing
2024-04-06 18:26:08 +01:00
clap = { version = "4.5", features = ["cargo", "derive"] }
2024-04-06 18:52:17 +01:00
# logging
console-subscriber = "0.2"
tracing = "0.1"
tracing-subscriber = "0.3"
# fs
tempfile = "3.10"
2024-04-07 12:28:53 +01:00
# TOML parsing
2024-04-07 13:20:48 +01:00
serde = { version = "1.0", features = ["derive"] }
2024-04-07 12:28:53 +01:00
toml = "0.8"
[dev-dependencies]
# Testing
test-log = "0.2"
[package.metadata.bin]
# Conventional commits githook
cc-cli = { version = "0.1" }