forked from rust-lang/team
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
71 lines (65 loc) · 1.63 KB
/
Cargo.toml
File metadata and controls
71 lines (65 loc) · 1.63 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 = "rust-team"
edition = '2021'
license.workspace = true
[dependencies]
anyhow = { workspace = true, features = ["backtrace"] }
base64.workspace = true
clap = { workspace = true, features = ["derive"] }
dialoguer.workspace = true
env_logger = { workspace = true, default-features = false }
indexmap.workspace = true
log.workspace = true
regex.workspace = true
reqwest = { workspace = true, features = ["json", "blocking"], default-features = true }
rust_team_data = { workspace = true, features = ["email-encryption"] }
serde.workspace = true
serde_derive.workspace = true
serde_json.workspace = true
serde-untagged.workspace = true
tempfile.workspace = true
toml.workspace = true
sync-team.workspace = true
[dev-dependencies]
ansi_term.workspace = true
atty.workspace = true
difference.workspace = true
duct.workspace = true
walkdir.workspace = true
[workspace]
members = [
"rust_team_data",
"sync-team"
]
[workspace.package]
license = "MIT OR Apache-2.0"
[workspace.dependencies]
anyhow = "1.0"
ansi_term = "0.12.1"
atty = "0.2.14"
base64 = "0.22"
chacha20poly1305 = "0.9.0"
clap = "4.5"
derive_builder = "0.20.2"
dialoguer = "0.10.1"
difference = "2.0.0"
duct = "0.13.4"
env_logger = { version = "0.9.0", default-features = false }
getrandom = "0.2.1"
hex = "0.4.2"
hyper-old-types = "0.11"
indexmap = "2.6.0"
insta = "1.40.0"
log = "0.4"
regex = "1.5.5"
reqwest = { version = "0.12.8", default-features = false }
rust_team_data = { path = "rust_team_data" }
secrecy = "0.10"
serde = "1.0.85"
serde_derive = "1.0"
serde_json = "1.0"
serde-untagged = "0.1"
sync-team = { path = "sync-team" }
tempfile = "3.19.1"
toml = "0.8"
walkdir = "2.3.1"