2019-02-26 11:20:38 +01:00
|
|
|
[package]
|
|
|
|
name = "crimp"
|
2019-02-26 17:29:50 +01:00
|
|
|
description = "Higher-level Rust API for cURL bindings"
|
2022-05-16 20:08:06 +02:00
|
|
|
version = "4087.0.0"
|
|
|
|
authors = ["Vincent Ambo <tazjin@tvl.su>"]
|
2019-02-26 17:29:50 +01:00
|
|
|
keywords = [ "http", "curl" ]
|
|
|
|
categories = [ "api-bindings" ]
|
2019-02-26 17:29:39 +01:00
|
|
|
license = "GPL-3.0-or-later"
|
2022-05-16 20:08:06 +02:00
|
|
|
homepage = "https://code.tvl.fyi/about/net/crimp"
|
|
|
|
repository = "https://code.tvl.fyi/depot.git:/net/crimp.git"
|
|
|
|
|
2019-02-26 11:20:38 +01:00
|
|
|
|
2019-02-26 13:49:43 +01:00
|
|
|
[features]
|
2019-02-26 17:54:11 +01:00
|
|
|
default = [ "json" ]
|
2019-02-26 13:49:43 +01:00
|
|
|
json = [ "serde", "serde_json"]
|
|
|
|
|
2019-02-26 11:20:38 +01:00
|
|
|
[dependencies]
|
|
|
|
curl = "0.4"
|
2019-02-26 13:49:43 +01:00
|
|
|
serde = { version = "1.0", optional = true }
|
|
|
|
serde_json = { version = "1.0", optional = true }
|