[package] name = "fluent-uri" version = "0.3.2" authors = ["Scallop Ye "] 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" serde = { version = "1.0", 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)', ] }