-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
54 lines (49 loc) · 1.7 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
54
[package]
name = "dino-park-packs"
version = "0.5.13"
authors = ["Florian Merz <[email protected]>"]
edition = "2018"
[lib]
path = "src/lib.rs"
[[bin]]
name = "dino-park-packs"
path = "src/main.rs"
[features]
default = []
local = ["dino_park_gate/localuserscope"]
[dependencies]
cis_client = { git = "https://github.com/mozilla-iam/cis_client-rust", tag = "0.7.2", version = "0.7.2" }
cis_profile = { git = "https://github.com/mozilla-iam/cis_profile-rust", tag = "0.4.5", version = "0.4.5", features = ["aws", "vendored"] }
dino_park_gate = { git = "https://github.com/mozilla-iam/dino-park-gate", tag = "0.8.7", version = "0.8.7" }
dino_park_guard = { git = "https://github.com/mozilla-iam/dino-park-guard", tag = "0.3.5", version = "0.3.5" }
dino_park_trust = { git = "https://github.com/mozilla-iam/dino-park-trust", tag = "0.0.8", version = "0.0.8" }
diesel = { version = "1.4", features = ["postgres", "uuidv07", "r2d2", "chrono", "serde_json"] }
lexical-core = "0.7.5"
diesel_migrations = "1.4"
actix-web = "3"
actix-rt = "1"
actix-multipart = "0.3"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
uuid = { version = "0.8", features = ["serde", "v4"] }
log = "0.4"
env_logger = "0.7"
failure = "0.1"
failure_derive = "0.1"
diesel-derive-enum = { version = "1", features = ["postgres"] }
futures = "0.3"
r2d2 = "0.8"
config = "0.10"
# chrono = "0.4" # TODO: resolve the deprecations in https://github.com/chronotope/chrono/releases/tag/v0.4.23
chrono = "=0.4.22"
rusoto_core = "0.45"
rusoto_ses = "0.45"
lazy_static = "1.4"
actix-http = "2"
csv = "1.1"
basket = "0.0.4"
url = { version = "2", features = ["serde"] }
[dev-dependencies]
tokio = "1.8"
uuid = { version = "0.8", features = ["v5"] }
base64 = "0.12"