-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
30 lines (26 loc) · 863 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
[package]
name = "geo-uri"
version = "0.2.2"
authors = ["Paul van Tilburg <[email protected]>"]
edition = "2021"
rust-version = "1.60.0"
description = "A crate for parsing and generating uniform resource identifiers for geographic locations (geo URIs)"
readme = "README.md"
repository = "https://git.luon.net/paul/geo-uri-rs"
license = "MIT"
keywords = ["geolocation", "uri", "parser", "rfc5870"]
categories = ["parser-implementations", "web-programming", "encoding"]
include = ["CHANGELOG.md", "LICENSE", "README.md", "src/*.rs"]
[package.metadata."docs.rs"]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[features]
url = ["dep:url"]
serde = ["dep:serde"]
[dependencies]
derive_builder = "0.20.0"
serde = { version = "1.0.145", optional = true }
thiserror = "2.0.0"
url = { version = "2.3.1", optional = true }
[dev-dependencies]
serde_test = "1.0.145"