tvl-depot/Cargo.toml
Vincent Ambo de16d9698d feat: Add optional Request::basic_auth utility function
This function adds a dependency on `base64` and is thus gated behind
the (enabled by default) `basic_auth` feature.
2019-02-26 17:30:49 +01:00

15 lines
361 B
TOML

[package]
name = "crimp"
version = "0.1.0"
authors = ["Vincent Ambo <mail@tazj.in>"]
[features]
default = [ "json", "basic_auth" ]
json = [ "serde", "serde_json"]
basic_auth = [ "base64" ]
[dependencies]
curl = "0.4"
serde = { version = "1.0", optional = true }
serde_json = { version = "1.0", optional = true }
base64 = { version = "0.10", optional = true }