-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
71 lines (62 loc) · 1.96 KB
/
Cargo.toml
File metadata and controls
71 lines (62 loc) · 1.96 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 = "souko"
version = "0.3.2"
edition = "2024"
rust-version = "1.88.0"
description = "A simple command line utility that provides an easy way to organize clones of remote git repositories"
readme = "README.md"
repository = "https://github.com/gifnksm/souko"
license = "MIT OR Apache-2.0"
authors = ["gifnksm <makoto.nksm+github@gmail.com>"]
keywords = ["git", "vcs", "cli", "utility"]
categories = ["command-line-utilities"]
[package.metadata.cargo-sync-rdme.badge]
style = "flat-square"
[package.metadata.cargo-sync-rdme.badge.badges]
maintenance = true
license = { link = "#license" }
crates-io = true
rust-version = true
github-actions = { workflows = ["ci.yml"] }
codecov = true
[package.metadata.binstall]
pkg-url = "{ repo }/releases/download/v{ version }/{ name }-v{ version }-{ target }.{ archive-format }"
bin-dir = "{ bin }{ binary-ext }"
pkg-fmt = "tgz"
[dependencies]
chrono = { version = "0.4.44", features = ["clock", "serde"], default-features = false }
clap = { version = "4.6.1", features = ["derive", "env"] }
clap_complete = { version = "4.6.4" }
clap_complete_nushell = "4.6.0"
clap_mangen = "0.3.0"
color-eyre = "0.6.5"
custom_debug_derive = "0.6.2"
derive_more = { version = "2.1.1", features = ["is_variant"] }
directories = "6.0.0"
dunce = "1.0.5"
git2 = { version = "0.20.4" }
git2_credentials = "0.15.0"
regex = "1.12.3"
remove_dir_all = "1.0.0"
serde = { version = "1.0.228", features = ["derive", "rc"] }
serde_json = "1.0.149"
tempfile = "3.27.0"
thiserror = "2.0.18"
toml_edit = { version = "0.25.11", features = ["serde"] }
tracing = "0.1.44"
tracing-subscriber = { version = "0.3.23", features = ["env-filter"] }
url = "2.5.8"
walkdir = "2.5.0"
[dev-dependencies]
assert_cmd = "2.2.1"
assert_fs = "1.1.3"
predicates = "3.1.4"
[build-dependencies]
[features]
default = []
vendored-libgit2 = ["git2/vendored-libgit2"]
vendored-openssl = ["git2/vendored-openssl"]
[profile.release]
strip = true
[badges]
maintenance = { status = "actively-developed" }