geo-uri-rs/Cargo.toml

30 lines
799 B
TOML
Raw Normal View History

2022-09-27 17:10:45 +02:00
[package]
name = "geo-uri"
2022-10-01 15:47:21 +02:00
version = "0.2.0"
2022-09-27 18:01:02 +02:00
authors = ["Paul van Tilburg <paul@luon.net>"]
2022-10-01 15:36:08 +02:00
edition = "2021"
rust-version = "1.60.0"
2022-09-30 20:40:03 +02:00
description = "A crate for parsing and generating uniform resource identifiers for geographic locations (geo URIs)"
readme = "README.md"
2022-10-01 15:36:08 +02:00
repository = "https://git.luon.net/paul/geo-uri-rs"
license = "MIT"
2022-09-30 20:40:03 +02:00
keywords = ["geolocation", "uri", "parser", "rfc5870"]
2022-10-01 15:36:08 +02:00
categories = ["parser-implementations", "web-programming", "encoding"]
2022-09-27 17:10:45 +02:00
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[features]
url = ["dep:url"]
serde = ["dep:serde"]
2022-09-27 17:10:45 +02:00
[dependencies]
derive_builder = "0.11.2"
serde = { version = "1.0.145", optional = true }
2022-09-27 17:10:45 +02:00
thiserror = "1.0.35"
url = { version = "2.3.1", optional = true }
2022-09-27 17:10:45 +02:00
[dev-dependencies]
serde_test = "1.0.145"