-
Notifications
You must be signed in to change notification settings - Fork 300
/
Copy pathCargo.toml
42 lines (37 loc) · 959 Bytes
/
Cargo.toml
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
[package]
name = "rust-team"
version = "0.1.0"
authors = ["Alex Crichton <[email protected]>", "Pietro Albini <[email protected]>"]
edition = '2018'
license.workspace = true
[dependencies]
anyhow = { version = "1", features = ["backtrace"] }
base64 = "0.13.0"
clap = { version = "4.5", features = ["derive"] }
dialoguer = "0.10.1"
env_logger = { version = "0.9.0", default-features = false }
indexmap = "2"
log = "0.4"
regex = "1.5.5"
reqwest = { version = "0.11.11", features = ["json", "blocking"] }
rust_team_data = { path = "rust_team_data", features = ["email-encryption"] }
serde = "1"
serde_derive = "1"
serde_json = "1"
serde-untagged = "0.1"
tempfile = "3.19.1"
toml = "0.8"
sync-team = { path = "sync-team" }
[dev-dependencies]
ansi_term = "0.12.1"
atty = "0.2.14"
difference = "2.0.0"
duct = "0.13.4"
walkdir = "2.3.1"
[workspace]
members = [
"rust_team_data",
"sync-team"
]
[workspace.package]
license = "MIT OR Apache-2.0"