-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
84 lines (80 loc) · 3.26 KB
/
Copy pathCargo.toml
File metadata and controls
84 lines (80 loc) · 3.26 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
[package]
name = "jr"
version = "0.7.0-dev.1"
edition = "2024"
description = "A fast CLI for Jira Cloud"
repository = "https://github.com/Zious11/jira-cli"
rust-version = "1.85"
license = "MIT"
[[bin]]
name = "jr"
path = "src/main.rs"
[dependencies]
anyhow = "1"
clap = { version = "4", features = ["derive"] }
clap_complete = "4"
colored = "3"
# Pinned to 7.2.1: 7.2.2 uses let-chains (edition 2024, requires Rust ≥1.88) and
# deleted the rust-version manifest field, so a caret range resolves to an
# incompatible version without any MSRV enforcement from cargo. Pin holds until
# MSRV is raised to 1.88 in a dedicated story.
# See: issue #626.
comfy-table = "=7.2.1"
dialoguer = "0.12"
dirs = "6"
figment = { version = "0.10", features = ["toml", "env"] }
keyring = { version = "3", features = ["apple-native", "linux-native", "windows-native"] }
open = "5"
reqwest = { version = "0.13", default-features = false, features = ["json", "multipart", "rustls", "stream"] }
tokio-util = { version = "^0.7", features = ["io-util"] }
sha1 = { version = "^0.11" }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
thiserror = "2"
tokio = { version = "1", features = ["full"] }
toml = "1"
base64 = "0.22"
chrono = { version = "0.4", features = ["serde"] }
futures = { version = "0.3", default-features = false, features = ["async-await"] }
rand = "0.10"
urlencoding = "2"
url = "2"
pulldown-cmark = { version = "0.13", default-features = false }
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.19", features = ["env-filter", "fmt"] }
[dev-dependencies]
assert_cmd = "2"
predicates = "3"
tempfile = "3"
wiremock = "0.6"
insta = { version = "1", features = ["json"] }
proptest = "1"
# test-util enables tokio::time::pause() + start_paused = true for S-3.07 AC-001/AC-002
tokio = { version = "1", features = ["test-util"] }
# temp-env: scoped env-var overrides for cache-isolation tests (H-2 / S-396)
temp-env = "0.3"
# scopeguard: defer! for cleanup-on-panic in integration tests (L-7 / S-396)
scopeguard = "1"
# glob: expand examine_globs patterns for Guard 3 existence check (S-MUTANTS-SCOPE-GUARDS-1 / DEC-150)
glob = "0.3"
# sha1: compute batch-path prefixes in mutation-kill tests (PG-F4-10)
sha1 = { version = "^0.11" }
# saphyr-parser: event-stream-only YAML parsing for tests/ci_gate_completeness.rs (S-CIGATE-3).
# Exact-version pin (not a caret range) — 0.0.x carries no semver guarantee by convention,
# so a 0.0.x bump can be breaking; the exact pin forces any upgrade through a reviewed
# Cargo.toml diff rather than a silent `cargo update`. (Note: this crate's own MSRV happens
# to be exactly 1.85.0 against this repo's rust-version = "1.85", zero headroom — but that is
# NOT enforced by the msrv CI job, since it's a dev-dependency and that job's `cargo check`
# scope is lib + bins only, not --all-targets.) See CLAUDE.md ci-gate bullet / AC-006.
saphyr-parser = "=0.0.11"
# libc: already a resolved transitive dependency (pulled in by tokio/reqwest on
# Unix; 0.2.183 in Cargo.lock) but Rust requires an explicit Cargo.toml edge
# before `use libc::...` compiles from test code. Adds ZERO new crates to the
# dependency graph — see tests/interrupt_signal.rs (VP-MUTANTS-SCOPE-1-001).
libc = "0.2"
[profile.release]
opt-level = 3
lto = "thin"
codegen-units = 1
strip = true
panic = "abort"