-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
89 lines (80 loc) · 1.71 KB
/
Cargo.toml
File metadata and controls
89 lines (80 loc) · 1.71 KB
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
[package]
name = "codeinput"
version = "0.0.1-beta"
authors = ["Abid Omar <contact@omarabid.com>"]
edition = "2024"
repository = "https://github.com/CodeInputCorp/cli"
readme = "README.md"
license = "MIT"
keywords = ["cli", "codeinput", "git", "tooling"]
description = """
code input cli.
"""
[[bin]]
name = "ci"
path = "src/main.rs"
[features]
nightly = []
termlog = ["slog-term"]
journald = ["slog-journald"]
syslog = ["slog-syslog"]
[dependencies]
human-panic = "2.0.0"
better-panic = "0.3.0"
log = "0.4.27"
clap_complete = "4.5.50"
rand = "0.9.1"
ignore = "0.4.23"
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.140"
bincode = {version= "2.0.1", features = ["serde"] }
git2 = { version = "0.20.2" }
sha2 = { version = "0.10.9" }
thiserror = "2.0.12"
backtrace = "0.3.75"
color-backtrace = "0.7.0"
config = "0.15.11"
lazy_static = "1.5.0"
slog = "2.7.0"
slog-syslog = { version="0.13.0", optional = true }
slog-term = {version = "2.9.1", optional = true }
slog-scope = "4.4.0"
slog-async = "2.8.0"
slog-stdlog = "4.1.1"
[target.'cfg(target_os = "linux")'.dependencies]
slog-journald = {version = "2.2.0", optional = true }
[dependencies.clap]
version = "4.5.38"
features = ["cargo", "derive"]
[dev-dependencies]
assert_cmd = "2.0.17"
predicates = "3.1.3"
tempfile = "3.20"
[profile.dev]
opt-level = 0
debug = true
rpath = false
lto = false
debug-assertions = true
codegen-units = 4
[profile.release]
opt-level = 3
debug = false
rpath = false
lto = true
debug-assertions = false
codegen-units = 1
[profile.test]
opt-level = 1
debug = true
rpath = false
lto = false
debug-assertions = true
codegen-units = 4
[profile.bench]
opt-level = 3
debug = false
rpath = false
lto = true
debug-assertions = false
codegen-units = 1