mirror of
https://github.com/postrequest/link
synced 2026-06-08 16:46:19 +00:00
31 lines
697 B
TOML
31 lines
697 B
TOML
[package]
|
|
name = "link"
|
|
version = "0.1.0"
|
|
authors = ["postrequest"]
|
|
edition = "2018"
|
|
doc = false
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[profile.release]
|
|
lto = true
|
|
opt-level = 's'
|
|
panic = 'abort'
|
|
codegen-units = 1
|
|
|
|
[lib]
|
|
path = "src/lib.rs"
|
|
crate-type = ["staticlib", "cdylib"]
|
|
|
|
[features]
|
|
dangerous_configuration = ["rustls/dangerous_configuration"]
|
|
|
|
[dependencies]
|
|
winapi = { version = "0.3", features = ["winbase", "winhttp", "memoryapi"] }
|
|
reqwest = { version = "0.10", features = ["blocking", "cookies", "json"] }
|
|
rustls = "0.19.0"
|
|
serde = "1.0.118"
|
|
webpki = "0.21.4"
|
|
base64 = "0.13.0"
|
|
goblin = "0.3"
|