-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
30 lines (27 loc) · 966 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
[package]
name = "cargo-dbcheck"
version = "0.1.5"
edition = "2021"
description = "A CLI tool for tracking the progress in the db-academy.io courses"
license = "MIT"
keywords = ["cli", "dbcheck", "db-academy-io", "database-development"]
categories = ["database-implementations", "command-line-utilities", "development-tools::cargo-plugins",]
repository = "https://github.com/db-academy-io/cargo-dbcheck"
[dependencies]
keyring = { version = "3", features = ["apple-native", "windows-native", "linux-native", "sync-secret-service"] }
clap = { version = "4.5.4", features = ["derive"] }
clap-cargo = "0.15.2"
git2 = "0.20.0"
serde = "1.0.217"
serde_json = "1.0.135"
serde_derive = "1.0.217"
reqwest = { version = "0.12.12", features = ["blocking", "json"] }
log = "0.4.25"
env_logger = "0.11.6"
log4rs = "1.3.0"
fern = "0.7.1"
[dev-dependencies]
pre-commit = "0.5.2"
[package.metadata.precommit]
fmt = "cargo fmt -- --write-mode diff 2>&1"
test = "cargo test 2>&1"