-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
53 lines (51 loc) · 1.65 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
[package]
name = "redact-store"
version = "0.1.0"
authors = ["ajp <8890201+ajpauwels@users.noreply.github.com>"]
edition = "2021"
license-file = "LICENSE"
description = "Provides a common interface on top of storage backings"
documentation = "https://docs.rs/redact-store"
repository = "https://github.com/pauwels-labs/redact-store.git"
readme = "README.md"
exclude = [
".dockerignore",
".git",
".gitignore",
".lighthouse",
"charts",
"preview",
"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.27.0", features = ["macros", "rt-multi-thread"] }
warp = { version = "0.3.4", features = ["tls"] }
redact-config = { git = "https://github.com/pauwels-labs/redact-config", rev = "2d1c3059bc37689ab432a4422765438f4d9a3125" }
serde = { version = "1.0.159", features = ["derive"] }
serde_json = "1.0.95"
mongodb = "2.4.0"
bson = "2.6.1"
futures = "0.3.28"
pretty_env_logger = "0.4.0"
async-trait = "0.1.68"
async-recursion = "1.0.4"
#redact-crypto = "2.7.1"
redact-crypto = { git = "https://github.com/pauwels-labs/redact-crypto", rev = "fdea273e281f270f0af33fae157ea597f902c952" }
tokio-rustls = { version = "0.23.1", features = ["dangerous_configuration"] }
hyper = "0.14.25"
x509-parser = "0.15.0"
chrono = "0.4.24"
base64 = "0.21.0"
pkcs8 = { version = "0.8.0", features = ["pem", "alloc"] }
der = "0.5.1"
log = "0.4.17"
env_logger = "0.10.0"
rustls-pemfile = "1.0.2"
urlencoding = "2.1.2"
pem = "2.0.1"