geo-uri-rs/Cargo.toml

22 lines
546 B
TOML
Raw Normal View History

2022-09-27 17:10:45 +02:00
[package]
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-27 17:10:45 +02:00
edition = "2021"
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
[features]
url = ["dep:url"]
2022-09-27 17:10:45 +02:00
[dependencies]
derive_builder = "0.11.2"
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"