geo-uri-rs/Cargo.toml

29 lines
723 B
TOML
Raw Normal View History

2022-09-27 17:10:45 +02:00
[package]
edition = "2021"
2022-09-27 17:10:45 +02:00
name = "geo-uri"
2022-09-30 20:52:08 +02:00
version = "0.1.1"
2022-09-27 18:01:02 +02:00
authors = ["Paul van Tilburg <paul@luon.net>"]
2022-09-30 20:40:03 +02:00
description = "A crate for parsing and generating uniform resource identifiers for geographic locations (geo URIs)"
repository = "https://git.luon.net/paul/geo-uri-rs"
readme = "README.md"
license = "MIT"
2022-09-30 20:40:03 +02:00
keywords = ["geolocation", "uri", "parser", "rfc5870"]
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]
float_eq = "1.0.0"
serde_test = "1.0.145"