tvl-depot/Cargo.toml
Vincent Ambo acc7e64a0d refactor: Use cURL's own basic auth implementation
Drops the dependency on the base64-crate, which it turns out isn't
necessary as cURL has this built-in.
2019-02-26 17:54:11 +01:00

18 lines
468 B
TOML

[package]
name = "crimp"
description = "Higher-level Rust API for cURL bindings"
version = "0.1.0"
authors = ["Vincent Ambo <mail@tazj.in>"]
keywords = [ "http", "curl" ]
categories = [ "api-bindings" ]
license = "GPL-3.0-or-later"
repository = "https://github.com/tazjin/crimp"
[features]
default = [ "json" ]
json = [ "serde", "serde_json"]
[dependencies]
curl = "0.4"
serde = { version = "1.0", optional = true }
serde_json = { version = "1.0", optional = true }