forked from cloudflare/quiche
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
47 lines (40 loc) · 974 Bytes
/
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
[package]
name = "quiche"
version = "0.1.0-alpha2"
authors = ["Alessandro Ghedini <[email protected]>"]
edition = "2018"
build = "src/build.rs"
description = "🥧 Savoury implementation of the QUIC transport protocol"
repository = "https://github.com/cloudflare/quiche"
readme = "README.md"
keywords = ["quic"]
categories = [ "network-programming" ]
license = "BSD-2-Clause"
exclude = [
"deps/boringssl/crypto/**/*_test.txt",
"deps/boringssl/crypto/**/*_tests.txt",
"deps/boringssl/**/nist_cavp/*.txt",
"deps/boringssl/fuzz/*",
"deps/boringssl/ssl/test/runner/*",
"deps/boringssl/third_party/wycheproof_testvectors/*",
]
[features]
no_bssl = []
[package.metadata.docs.rs]
features = [ "no_bssl" ]
[build-dependencies]
cmake = "0"
[dependencies]
log = "0"
libc = "0"
ring = "0.14"
lazy_static = "1"
[dev-dependencies]
mio = "0"
url = "1"
docopt = "1"
env_logger = "0"
[profile.release]
debug = true
[lib]
crate-type = ["lib", "staticlib"]