-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
61 lines (58 loc) · 1.6 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
55
56
57
58
59
60
61
[package]
name = "redact-client"
version = "0.1.0"
authors = ["Alexandre Pauwels <[email protected]>"]
edition = "2018"
license-file = "LICENSE"
description = "Receives request for private data and decrypts it to display securely in browser"
documentation = "https://docs.rs/redact-client"
repository = "https://github.com/pauwels-labs/redact-client.git"
readme = "README.md"
exclude = [
".dockerignore",
".git",
".gitignore",
".lighthouse",
"Dockerfilest",
"Dockerfilest.dev",
"Dockerfilest.test",
"OWNERS",
"OWNERS_ALIASES",
"tarpaulin-report.html"
]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tokio = { version = "1.14.0", features = ["macros", "rt-multi-thread"] }
warp = "0.3.2"
redact-config = "1.0.1"
serde = { version = "1.0.130", features = ["derive"] }
serde_json = "1.0.71"
futures = "0.3.17"
reqwest = { version = "0.11.6", features = ["json", "rustls-tls"] }
uuid = { version = "0.8.2", features = ["v4"] }
async-trait = "0.1.51"
async-session = "3.0.0"
sha2 = "0.9.8"
handlebars = "4.1.5"
thiserror = "1.0.30"
rand = "0.8.4"
rand_pcg = "0.3.1"
warp-sessions = "1.0.13"
base64 = "0.13.0"
sodiumoxide = "0.2.7"
http = "0.2.5"
redact-crypto = "2.7.1"
bson = "2.0.1"
regex = "1.5.4"
percent-encoding = "2.1.0"
chrono = "0.4.19"
url = "2.2.2"
addr = "0.14.0"
bytes = "1.1.0"
itertools = "0.10.1"
strum = { version = "0.23.0"}
pkcs8 = { version = "0.8.0", features = ["pem"] }
[dev-dependencies]
mockall = "0.9.0"
mockito = "0.30.0"
mongodb = "1.2.1"