-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
71 lines (64 loc) · 2.02 KB
/
Copy pathCargo.toml
File metadata and controls
71 lines (64 loc) · 2.02 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
[package]
name = "cascade-cli"
version = "0.1.152"
edition = "2021"
description = "Stacked diffs CLI for Bitbucket Server"
authors = ["Jared Manfredi <jared@jaredm.dev>"]
license = "MIT OR Apache-2.0"
readme = "README.md"
homepage = "https://github.com/JAManfredi/cascade-cli"
repository = "https://github.com/JAManfredi/cascade-cli"
documentation = "https://docs.rs/cascade-cli"
keywords = ["git", "bitbucket", "stacked-diffs", "cli", "development"]
categories = ["command-line-utilities", "development-tools"]
rust-version = "1.82.0"
[[bin]]
name = "ca"
path = "src/main.rs"
[dependencies]
clap = { version = "4.0", features = ["derive"] }
clap_complete = "4.0"
dialoguer = "0.11"
indicatif = "0.17"
ratatui = "0.29" # Update to avoid unmaintained paste dependency
crossterm = "0.27"
git2 = { version = "0.20.2", default-features = false, features = ["vendored-libgit2", "vendored-openssl", "https", "ssh"] }
reqwest = { version = "0.11", features = ["json", "rustls-tls"], default-features = false }
tokio = { version = "1.0", features = ["full"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
anyhow = "1.0"
config = "0.14"
console = "0.15"
tracing = "0.1"
tracing-subscriber = "0.3.20" # Security: Fix RUSTSEC-2025-0055 (ANSI escape sequences)
uuid = { version = "1.0", features = ["v4", "serde"] }
chrono = { version = "0.4", features = ["serde"] }
dirs = "5.0"
thiserror = "1.0"
base64 = "0.21"
url = "2.4"
sha2 = "0.10"
open = "5.0"
[dev-dependencies]
tempfile = "3.0"
tokio-test = "0.4"
mockito = "1.0"
serde_json = "1.0"
futures = "0.3"
chrono = { version = "0.4", features = ["serde"] }
fastrand = "2.3.0"
serial_test = "3.0"
# Disabled until API compatibility issues are resolved
# [[test]]
# name = "rebase_safety_tests"
# path = "tests/rebase_safety_tests.rs"
[[test]]
name = "sync_command_tests"
path = "tests/sync_command_tests.rs"
[[test]]
name = "rebase_conflict_recovery_tests"
path = "tests/rebase_conflict_recovery_tests.rs"
[[test]]
name = "rebase_safety_tests_simple"
path = "tests/rebase_safety_tests_simple.rs"