-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
39 lines (36 loc) · 1.02 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
[package]
name = "dino_park_gate"
version = "0.10.6"
authors = ["Florian Merz <[email protected]>"]
edition = "2018"
license = "MIT"
repository = "https://github.com/mozilla-iam/dino-park-gate"
documentation = "https://docs.rs/crate/dino-park-gate"
keywords = ["actix", "middleware", "authentication"]
categories = []
readme = "README.md"
include = ["Cargo.toml", "src/**/*.rs", "README.md", "LICENSE"]
[features]
default = []
localuserscope = []
[dependencies]
dino_park_trust = { git = "https://github.com/mozilla-iam/dino-park-trust", tag = "0.1.0", version = "0.1.0" }
dino-park-oidc = { git = "https://github.com/mozilla-iam/dino-park-oidc", branch = "0.1", version = "0.1" }
shared-expiry-get = "0.2"
thiserror = "1"
biscuit = "0.5"
url = "2"
actix-web = "4"
actix-service = "2"
env_logger = "0.9"
serde = "1"
serde_json = "1"
serde_derive = "1"
chrono = "0.4"
reqwest = { version = "0.11", features = ["json"] }
bitflags = "1"
futures = "0.3"
log = "0.4"
[dev-dependencies]
tokio = { version = "1", features = ["full"] }
actix-rt = "2"