-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
35 lines (35 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
[package]
name = "ocsp-server"
authors = ["DorianCoding"]
description = "OCSP server, listening for requests to give responses."
version = "0.3.0"
edition = "2021"
license = "GPL-3.0-only"
repository = "https://github.com/DorianCoding/OCSP_server"
keywords = ["ocsp", "server", "ocsp-response"]
categories = ["caching", "cryptography"]
exclude = [
"binaries/*",
"config.toml",
"service.sh",
]
[dependencies]
chrono = { version = "~0.4.31", default-features = false, features = ["std"]}
config-file = "~0.2.3"
hex = "~0.4.3"
mysql = { version = "~24.0.0", default-features = false, features = ["minimal"]}
ocsp = {git = "https://github.com/DorianCoding/ocsp-rs.git", tag="1.0.0" }
#ocsp = {git = "https://github.com/maicallist/ocsp-rs.git" }
pem-parser = {git = "https://github.com/yberreby/pem-parser-rs.git" }
#openssl-sys = { version = "~0.9.103", features = ["vendored" ]}
ring = "0.17.8"
rocket = "~0.5.0"
serde = "~1.0.193"
x509-parser = "~0.16.0"
zeroize = { version = "~1.7.0", features = ["std", "zeroize_derive"] }
[profile.release]
strip = "symbols"
[lints.rust]
unsafe_code = "warn"
[badges]
maintenance = {status = "passively-maintained" }