-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
54 lines (51 loc) · 1.48 KB
/
Cargo.toml
File metadata and controls
54 lines (51 loc) · 1.48 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
[workspace]
resolver = "2"
default-members = ["git-workon"]
members = ["git-workon", "git-workon-lib", "git-workon-fixture"]
[workspace.package]
authors = ["Eric Eldredge <lettertwo@gmail.com>"]
edition = "2021"
homepage = "https://github.com/lettertwo/git-workon"
license = "MIT"
repository = "https://github.com/lettertwo/git-workon"
rust-version = "1.68.2"
[workspace.dependencies]
assert_cmd = { version = "2.2.0", features = ["color", "color-auto"] }
assert_fs = { version = "1.1.3", features = ["color", "color-auto"] }
clap = { version = "4.6.0", features = [
"derive",
"color",
"wrap_help",
"unicode",
"env",
] }
clap-verbosity-flag = "3.0.4"
clap_complete = { version = "4.6.0", features = ["unstable-dynamic"] }
clap_mangen = "0.2.33"
dialoguer = { version = "0.12.0", features = ["fuzzy-select"] }
env_logger = "0.11.6"
git-workon-lib = { version = "0.1.0", path = "./git-workon-lib" }
git-workon-fixture = { path = "./git-workon-fixture" }
git2_credentials = { version = "0.15.0", features = ["ui4dialoguer"] }
git2 = { version = "0.20.4", default-features = false, features = [
"ssh",
"https",
] }
glob = "0.3"
ignore = "0.4"
indicatif = "0.18"
libc = "0.2"
log = "0.4.29"
miette = { version = "7.6.0", features = ["fancy"] }
owo-colors = "4"
predicates = { version = "3.1.4" }
supports-color = "3"
expectrl = "0.8"
pathdiff = "0.2.3"
serde_json = "1.0"
thiserror = "2.0.18"
unicode-width = "0.2.2"
# The profile that 'dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"