forked from AS207960/bjorn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
46 lines (42 loc) · 1.14 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
cargo-features = ["strip"]
[package]
name = "bjorn"
version = "0.1.0"
authors = ["Q <q@as207960.net>"]
edition = "2018"
[profile.release]
strip = true
opt-level = "z"
lto = true
[dependencies]
serde = "1"
serde_derive = "1"
serde_json = "1"
rocket = "0.4"
rocket_contrib = { version = "0.4", default-features = false, features = ["json", "diesel_postgres_pool"] }
postgres = { version = "0.19", features = ["with-chrono-0_4", "with-uuid-0_8"] }
chrono = { version = "0.4", features = ["serde"] }
uuid = { version = "0.8", features = ["serde", "v4"] }
base64 = "0.13"
lazy_static = "1"
openssl = "0.10"
openssl-sys = "0.9"
log = "0.4"
diesel = { version = "1", features = ["uuidv07", "chrono", "serde_json"] }
diesel_migrations = "1"
diesel-derive-enum = { version = "1", features = ["postgres"] }
url = "2"
tonic = "0.5"
prost = "0.8"
prost-types = "0.8"
tokio = { version = "1", features = ["rt", "rt-multi-thread"] }
hex = "0.4"
asn1 = "0.6"
libc = "0.2"
foreign-types = "0.3.1"
pretty_env_logger = "0.4"
trust-dns-proto = "*"
trust-dns-resolver = "*"
reqwest = { version = "0.11", features = ["gzip", "brotli", "deflate"] }
[build-dependencies]
tonic-build = "0.5"