about summary refs log blame commit diff
path: root/Cargo.toml
blob: 7df7f69a25197f45cce7b1cec59c254e03a2e7cc (plain) (tree)
1
2
3
4
5
6
7
8
9

              
                                                       

                                         

                               
                            
                                              
 
          
                                  
                               
                         
 

              

                                                 
                                              
[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", "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 }