jsonapis.rs/Cargo.toml

21 lines
622 B
TOML
Raw Normal View History

2021-09-10 09:20:45 +00:00
[package]
name = "jsonapis"
2021-09-28 08:07:51 +00:00
version = "0.0.4"
2021-09-10 09:20:45 +00:00
authors = ["Alex Kotov <kotovalexarian@gmail.com>"]
edition = "2018"
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
[dependencies]
2021-09-10 09:26:41 +00:00
regex = "1.5.4"
2021-09-28 10:05:47 +00:00
reqwest = { version = "0.11.4", features = ["blocking", "json"] }
2021-09-10 09:26:41 +00:00
serde = { version = "1.0.129", features = ["derive"] }
serde_json = "1.0.66"
2021-09-28 10:05:47 +00:00
url = "2.2.2"