uri-register 0.2.0

A high-performance PostgreSQL-backed URI dictionary service for assigning unique integer IDs to URIs
Documentation
[dependencies.async-trait]
version = "0.1"

[dependencies.deadpool-postgres]
version = "0.14"

[dependencies.log]
version = "0.4.29"

[dependencies.lru]
version = "0.16.2"

[dependencies.moka]
features = ["sync"]
version = "0.12.12"

[dependencies.pyo3]
features = ["extension-module", "abi3-py38"]
optional = true
version = "0.27"

[dependencies.pyo3-async-runtimes]
features = ["tokio-runtime"]
optional = true
version = "0.27"

[dependencies.pyo3-log]
optional = true
version = "0.13"

[dependencies.rand]
version = "0.9.2"

[dependencies.rustls]
version = "0.23.36"

[dependencies.thiserror]
version = "2.0.17"

[dependencies.tokio]
features = ["rt-multi-thread"]
version = "1.49.0"

[dependencies.tokio-postgres]
version = "0.7"

[dependencies.tokio-postgres-rustls]
version = "0.13"

[dependencies.tracing]
version = "0.1.44"

[dependencies.tracing-log]
optional = true
version = "0.2"

[dependencies.url]
version = "2.5.8"

[dependencies.webpki-roots]
version = "1.0.5"

[dev-dependencies.rand]
version = "0.9.2"

[dev-dependencies.tokio]
features = ["macros", "rt-multi-thread"]
version = "1.0"

[dev-dependencies.tracing-subscriber]
features = ["env-filter"]
version = "0.3"

[dev-dependencies.uuid]
features = ["v4"]
version = "1.19.0"

[[example]]
name = "web_crawler"
path = "examples/web_crawler.rs"

[features]
default = []
python = ["pyo3", "pyo3-async-runtimes", "pyo3-log", "tracing-log"]
test-utils = []

[lib]
crate-type = ["rlib", "cdylib"]
name = "uri_register"
path = "src/lib.rs"

[package]
authors = ["Ian Bailey"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["database"]
description = "A high-performance PostgreSQL-backed URI dictionary service for assigning unique integer IDs to URIs"
documentation = "https://docs.rs/uri-register"
edition = "2021"
exclude = [".github/", "target/"]
homepage = "https://github.com/telicent-oss/uri-register"
keywords = ["uri", "dictionary", "postgres", "string-interning", "id-mapping"]
license = "Apache-2.0"
name = "uri-register"
readme = "README.md"
repository = "https://github.com/telicent-oss/uri-register"
version = "0.2.0"

[[test]]
name = "integration_test"
path = "tests/integration_test.rs"

[[test]]
name = "stress_test"
path = "tests/stress_test.rs"