-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
45 lines (40 loc) · 1.08 KB
/
Cargo.toml
File metadata and controls
45 lines (40 loc) · 1.08 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
[package]
name = "gitlobster"
version = "1.5.1"
edition = "2021"
description = "A tool for cloning all available repositories in a GitLab instance"
categories = ["development-tools", "command-line-utilities"]
keywords = ["gitlab", "gitlobster"]
authors = ["Evgeniy <ea@lowit.ru>"]
homepage = "https://github.com/lowitea/gitlobster"
repository = "https://github.com/lowitea/gitlobster"
readme = "README.md"
license = "Apache-2.0"
[[bin]]
name = "gitlobster"
[dependencies]
clap = { version = "4", features = ["cargo", "derive", "env"] }
serde = { version = "1", features = ["derive"] }
reqwest = { version = "0.13", features = ["blocking", "json"] }
url = "2"
chrono = { version = "0.4", features = ["serde"] }
serde_json = "1"
urlencoding = "2"
pbr = "1"
tracing = "0.1"
tracing-subscriber = "0.3"
regex = "1"
tokio = { version = "1", features = ["full"] }
futures = "0.3"
anyhow = "1"
[dev-dependencies]
subprocess = "0.2"
uuid = { version = "1", features = ["v4", "fast-rng"] }
[features]
integration_tests = []
[profile]
[profile.release]
debug = false
lto = "fat"
opt-level = 3
codegen-units = 1