2021-09-10 05:20:45 -04:00
|
|
|
[package]
|
|
|
|
name = "jsonapis"
|
2022-08-03 02:56:37 -04:00
|
|
|
version = "0.0.8"
|
2021-09-10 05:20:45 -04:00
|
|
|
authors = ["Alex Kotov <kotovalexarian@gmail.com>"]
|
2021-10-23 09:41:25 -04:00
|
|
|
edition = "2021"
|
2021-09-10 05:26:41 -04:00
|
|
|
description = "JSON:API library for Rust"
|
2021-09-10 05:32:22 -04:00
|
|
|
readme = true
|
2021-09-10 05:26:41 -04:00
|
|
|
homepage = "https://github.com/kotovalexarian/jsonapis.rs"
|
|
|
|
repository = "https://github.com/kotovalexarian/jsonapis.rs.git"
|
2021-09-10 05:32:22 -04:00
|
|
|
license = "MIT"
|
|
|
|
keywords = ["api", "deserialization", "json", "serialization", "jsonapi"]
|
|
|
|
categories = ["web-programming"]
|
|
|
|
publish = true
|
2021-09-10 05:20:45 -04:00
|
|
|
|
2021-09-28 06:34:38 -04:00
|
|
|
[features]
|
|
|
|
default = ["client"]
|
|
|
|
client = ["reqwest", "url"]
|
|
|
|
|
2021-09-10 05:20:45 -04:00
|
|
|
[dependencies]
|
2022-08-02 11:18:18 -04:00
|
|
|
http = "0.2.8"
|
2022-08-01 15:34:22 -04:00
|
|
|
regex = "1.6.0"
|
|
|
|
reqwest = { version = "0.11.11", optional = true, features = ["blocking", "json"] }
|
|
|
|
serde = { version = "1.0.141", features = ["derive"] }
|
|
|
|
serde_json = "1.0.82"
|
2021-09-28 06:34:38 -04:00
|
|
|
url = { version = "2.2.2", optional = true }
|