-
Notifications
You must be signed in to change notification settings - Fork 51
/
Copy pathCargo.toml
25 lines (22 loc) · 969 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
[package]
name = "schannel"
license = "MIT"
version = "0.1.27"
description = "Schannel bindings for rust, allowing SSL/TLS (e.g. https) without openssl"
authors = [ "Steven Fackler <[email protected]>", "Steffen Butzer <[email protected]>" ]
documentation = "https://docs.rs/schannel/0.1.19/schannel/"
repository = "https://github.com/steffengy/schannel-rs"
readme = "README.md"
keywords = ["windows", "schannel", "tls", "ssl", "https"]
edition = "2018"
rust-version = "1.60.0"
[package.metadata.docs.rs]
default-target = "x86_64-pc-windows-msvc"
[dependencies]
windows-sys = { version = "0.59", features = [
"Win32_Foundation", "Win32_Security_Cryptography",
"Win32_Security_Authentication_Identity", "Win32_Security_Credentials",
"Win32_System_LibraryLoader", "Win32_System_Memory", "Win32_System_SystemInformation"
] }
[dev-dependencies]
windows-sys = { version = "0.59", features = ["Win32_System_SystemInformation", "Win32_System_Time"] }