forked from microsoft/msquic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
53 lines (51 loc) · 1.32 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
[package]
name = "msquic"
version = "2.3.0-beta"
edition = "2018"
authors = ["Microsoft"]
description = "Microsoft implementation of the IETF QUIC protocol"
readme = "README.md"
repository = "https://github.com/microsoft/msquic/"
license = "MIT"
categories = ["network-programming", "asynchronous"]
keywords = ["quic", "network", "secure"]
build = "scripts/build.rs"
include = [
"*/*.md",
"/*.toml",
"/cmake",
"/CMakeLists.txt",
"/LICENSE",
"/submodules/CMakeLists.txt",
"/submodules/openssl/*.*",
"/submodules/openssl/apps",
"/submodules/openssl/CHANGES",
"/submodules/openssl/config",
"/submodules/openssl/Configure",
"/submodules/openssl/Configurations",
"/submodules/openssl/crypto",
"/submodules/openssl/engines",
"/submodules/openssl/external",
"/submodules/openssl/include",
"/submodules/openssl/ms",
"/submodules/openssl/os-dep",
"/submodules/openssl/ssl",
"/submodules/openssl/util",
"/submodules/openssl/VMS",
"/scripts/build.rs",
"/src/*.rs",
"/src/bin",
"/src/core",
"/src/inc",
"/src/generated",
"/src/manifest",
"/src/platform",
"/THIRD-PARTY-NOTICES",
]
[build-dependencies]
cmake = "0.1"
[dependencies]
bitfield = "0.14.0"
libc = "0.2.0"
c-types = "2.0.2"
serde = { version = "1.0.117", features = ["derive"] }