From 48c738b1b5353a1a123cb1e9141ab4b2ec32018b Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Sat, 21 Dec 2019 01:27:49 +0000 Subject: chore(crimp): Prepare for depot merge --- net/crimp/Cargo.toml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 net/crimp/Cargo.toml (limited to 'net/crimp/Cargo.toml') diff --git a/net/crimp/Cargo.toml b/net/crimp/Cargo.toml new file mode 100644 index 000000000000..13c80f1f6950 --- /dev/null +++ b/net/crimp/Cargo.toml @@ -0,0 +1,18 @@ +[package] +name = "crimp" +description = "Higher-level Rust API for cURL bindings" +version = "0.2.2" +authors = ["Vincent Ambo "] +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 } -- cgit 1.4.1