-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
38 lines (35 loc) · 1.02 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
[package]
name = "qkd_kme_server"
version = "0.1.0"
edition = "2021"
authors = ["Thomas Prevost <[email protected]>"]
description = "QKD Key Management Entity Server, following the ETSI GS QKD 014 standard"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
hyper = "1.1.0"
http-body-util = "0.1.0"
hyper-util = { version = "0.1.3", features = ["full"] }
tokio = { version="1.36.0", features = ["full"] }
tokio-rustls = "0.25.0"
rustls = "0.22.2"
rustls-pki-types = "1.2.0"
x509-parser = "0.15.1"
crossbeam-channel = "0.5.11"
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.114"
sha1 = "0.10.6"
uuid = "1.7.0"
sqlite = "0.33.0"
base64 = "0.21.7"
rustls-pemfile = "2.1.0"
log = "0.4.20"
simple_logger = "4.3.3"
notify = "6.1.1"
reqwest = { version = "0.11.24" , features = ["native-tls", "blocking", "json"] }
futures = "0.3.30"
url = "2.5.0"
chrono = "0.4.34"
[dev-dependencies]
serial_test = "3.0.0"
const_format = "0.2.32"
regex = "1.10.3"