-
Notifications
You must be signed in to change notification settings - Fork 67
/
Cargo.toml
61 lines (54 loc) · 1.45 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
60
61
[package]
name = "mesalink"
version = "0.10.1"
edition = "2018"
authors = ["The MesaLink Project Contributors"]
license = "BSD-3-Clause"
readme = "README.md"
description = "MesaLink is a memory-safe and OpenSSL-compatible TLS library based on Rustls and Ring."
keywords = ["tls", "ssl", "rust"]
homepage = "https://github.com/mesalock-linux/mesalink"
repository = "https://github.com/mesalock-linux/mesalink"
categories = ["network-programming"]
build = "build.rs"
[badges]
travis-ci = { repository = "mesalock-linux/mesalink", branch = "master" }
[lib]
name = "mesalink"
crate-type = ["lib", "staticlib", "cdylib"]
[features]
default = ["error_strings", "verifier"]
error_strings = ["rustls/logging"]
verifier = ["rustls/dangerous_configuration"]
jemalloc_allocator = ["jemallocator"]
[dependencies]
rustls = { version = "0.19.0", default-features = false }
ring = "0.16.19"
webpki = "0.21.4"
webpki-roots = "0.21.0"
sct = "0.6.0"
untrusted = "0.7"
env_logger = "0.8.2"
libc = "0.2"
lazy_static = "1.4"
enum_to_u8_slice_derive = "0.2"
bitflags = "1.2"
base64 = "0.13.0"
parking_lot = "0.11.0"
jemallocator = { version = "0.3", optional = true }
[dev-dependencies]
log = "0.4"
env_logger = "0.8.2"
[profile.release]
opt-level = 3
debug = false
rpath = false
lto = true
debug-assertions = false
codegen-units = 1
panic = "unwind"
overflow-checks = true
[[example]]
name = "bogo_shim"
path = "examples/bogo_shim/bogo_shim.rs"
required-features = ["verifier", "error_strings"]