-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
59 lines (55 loc) · 1.5 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
[package]
name = "bjorn-acme"
version = "0.6.3"
authors = ["Q Misell <[email protected]>"]
edition = "2021"
readme = "README.md"
license = "MIT"
repository = "https://github.com/as207960/bjorn"
description = "Building blocks for an ACME server"
[profile.release]
strip = true
opt-level = "z"
lto = true
[lib]
name = "bjorn"
[dependencies]
serde = "1"
serde_derive = "1"
serde_json = "1"
rocket = { version = "0.5", features = ["json"] }
rocket_dyn_templates = { version = "0.2.0", features = ["tera"] }
rocket_sync_db_pools = { version = "0.1.0", features = ["diesel_postgres_pool"] }
postgres = { version = "0.19", features = ["with-chrono-0_4", "with-uuid-0_8"] }
chrono = { version = "0.4", features = ["serde"] }
uuid = { version = "1", features = ["serde", "v4"] }
base64 = "0.22"
lazy_static = "1"
tokio-openssl = "0.6"
openssl = "0.10"
openssl-sys = "0.9"
log = "0.4"
diesel = { version = "2", features = ["postgres", "uuid", "extras"] }
diesel_migrations = "2"
diesel-derive-enum = { version = "2", features = ["postgres"] }
url = "2"
tonic = "0.12"
prost = "0.13"
prost-types = "0.13"
tokio = { version = "1", features = ["rt", "rt-multi-thread", "net"] }
hex = "0.4"
asn1 = "0.17"
libc = "0.2"
foreign-types = "0.3"
pretty_env_logger = "0.5"
trust-dns-proto = "0.23"
trust-dns-resolver = "0.23"
reqwest = { version = "0.12", features = ["gzip", "brotli", "deflate"] }
figment = "0.10"
futures = "0.3.27"
torrosion = "0.3"
ed25519-dalek = "2.0.0"
hyper = "1.4.1"
http-body-util = "0.1.2"
[build-dependencies]
tonic-build = "0.12"