-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
47 lines (44 loc) · 1.4 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
[package]
name = "acme-onion-ca"
version = "0.1.0"
edition = "2021"
license = "MIT"
repository = "https://github.com/as207960/acme-onion-ca"
homepage = "https://acmeforonions.org"
description = "A CA for issuing certificates to Onion hidden services, to be used in conjunction with Björn"
[dependencies]
diesel = { version = "2", features = ["uuid", "extras", "chrono", "postgres"] }
diesel-async = { version = "0.2.1", features = ["postgres", "mobc"] }
diesel-derive-enum = { version = "2", features = ["postgres"] }
diesel_migrations = "2"
uuid = { version = "1", features = ["serde", "v4"] }
chrono = { version = "0.4", features = ["serde"] }
serde_json = "1"
serde = { version = "1", features = ["derive"] }
config = "0.13"
log = "0.4"
pretty_env_logger = "0.4"
tokio = { version = "1", features = ["rt", "rt-multi-thread", "net"] }
tonic = "0.9"
prost = "0.11.8"
prost-wkt = "0.4"
prost-wkt-types = "0.4"
mobc = "0.8"
trust-dns-proto = "0.22"
rand = "0.8"
base64 = "0.21"
openssl = "0.10"
openssl-sys = "=0.9.93"
backoff = { version = "0.4", features = ["tokio"] }
reqwest = { version = "0.11", features = ["json"] }
byteorder = "1"
hex = "0.4"
libc = "0.2"
foreign-types-shared = "0.1"
x25519-dalek = "1"
futures = "0.3.31"
[build-dependencies]
tonic-build = "0.9"
prost-wkt-build = "0.4"
[patch.crates-io]
openssl-sys = { git = "https://github.com/AS207960/rust-openssl", rev = "1da47a7e9af19a40d5752cb7f5bd25af982b6541" }