about summary refs log tree commit diff
path: root/net/crimp/Cargo.toml
blob: 13c80f1f6950b9c48b7f946df65f8fa29f446697 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[package]
name = "crimp"
description = "Higher-level Rust API for cURL bindings"
version = "0.2.2"
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 }