summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: c538111f44bcc000529c1476268bd052d362532f (plain)
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
[package]
name = "rust-team"
version = "0.1.0"
authors = ["Alex Crichton <alex@alexcrichton.com>", "Pietro Albini <pietro@pietroalbini.org>"]
edition = '2018'

[dependencies]
toml = "0.5.1"
failure = "0.1"
serde = "1"
serde_derive = "1"
serde_json = "1"
log = "0.4"
env_logger = { version = "0.5", default-features = false }
structopt = "0.2.13"
regex = "1.0.6"
rust_team_data = { path = "rust_team_data" }
indexmap = "1.0.2"
reqwest = "0.9.18"
base64 = "0.10.1"

[workspace]
members = [
    "rust_team_data"
]