-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
37 lines (32 loc) · 869 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
31
32
33
34
35
36
37
[package]
name = "fluent-uri"
version = "0.3.2"
authors = ["Scallop Ye <yescallop@gmail.com>"]
edition = "2021"
rust-version = "1.65"
description = "A generic URI/IRI handling library compliant with RFC 3986/3987."
documentation = "https://docs.rs/fluent-uri"
repository = "https://github.com/yescallop/fluent-uri-rs"
license = "MIT"
keywords = ["builder", "parser", "uri", "iri"]
categories = ["encoding", "parser-implementations"]
[features]
default = ["std"]
std = []
net = []
[dependencies]
borrow-or-share = "0.2"
ref-cast = "1.0"
[dependencies.serde]
version = "1.0"
default-features = false
features = ["alloc"]
optional = true
[package.metadata.docs.rs]
all-features = true
targets = ["x86_64-unknown-linux-gnu"]
rustdoc-args = ["--cfg", "docsrs"]
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = [
'cfg(fluent_uri_unstable, fuzzing)',
] }