-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
41 lines (36 loc) · 975 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
[package]
name = "tokio-quicker"
description = "A easy-to-use quic library for tokio."
homepage = "https://github.com/cauvmou/tokio-quicker"
documentation = "https://docs.rs/tokio-quicker/latest/tokio_quicker/"
readme = "README.md"
keywords = ["quic", "tokio", "async"]
categories = ["network-programming"]
license = "MIT"
version = "0.1.0"
authors = ["cauvmou <[email protected]>"]
edition = "2021"
[dependencies]
log = "^0.4"
rand = "^0.8"
ring = "^0.17"
smallvec = "^1.13"
tokio = { version = "1", features = ["full"] }
tokio-timer = "^0.2"
quiche = { version = "0.22", features = ["boringssl-boring-crate"] }
boring = { version = "4", optional = true }
pollster = "^0.3.0"
rust-crypto = "^0.2"
chrono = "^0.4"
bytes = "1.5.0"
[dev-dependencies]
tokio = { version = "1", features = ["full"] }
simple_logger = "^5"
[features]
key-gen = ["dep:boring"]
[[example]]
name="server"
required-features=["key-gen"]
[[example]]
name="client"
required-features=["key-gen"]