[package]
edition = "2021"
name = "iriq"
version = "0.30.2"
authors = ["Daniel Pepper"]
build = false
exclude = ["tests/fixtures/*"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "IRI/URL extraction, normalization, and shape clustering."
homepage = "https://github.com/dpep/iriq"
documentation = "https://docs.rs/iriq"
readme = "README.md"
keywords = [
"url",
"iri",
"uri",
"parser",
"normalize",
]
categories = [
"parser-implementations",
"command-line-utilities",
"text-processing",
]
license = "MIT"
repository = "https://github.com/dpep/iriq"
[lib]
name = "iriq"
path = "src/lib.rs"
[[bin]]
name = "iriq"
path = "src/main.rs"
[[test]]
name = "cli_corpus"
path = "tests/cli_corpus.rs"
[[test]]
name = "cli_e2e"
path = "tests/cli_e2e.rs"
[[test]]
name = "corpus_normalize"
path = "tests/corpus_normalize.rs"
[[test]]
name = "fixtures"
path = "tests/fixtures.rs"
[[test]]
name = "sanity"
path = "tests/sanity.rs"
[dependencies.once_cell]
version = "1"
[dependencies.regex]
version = "1"
[dependencies.rusqlite]
version = "0.32"
features = ["bundled"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
features = ["preserve_order"]
[dependencies.thiserror]
version = "1"