jsonapis.rs/Cargo.toml

26 lines
747 B
TOML
Raw Permalink Normal View History

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