[package]
edition = "2021"
name = "cllw-ore"
version = "0.3.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Fast, efficient Order-Revealing Encryption using CLLW scheme"
homepage = "https://cipherstash.com"
documentation = "https://docs.rs/cllw-ore"
readme = "README.md"
keywords = [
"cryptography",
"security",
"databases",
"encryption",
"sql",
]
categories = [
"cryptography",
"database",
]
license-file = "LICENSE"
repository = "https://github.com/cipherstash/cipherstash"
[features]
default = ["postgres-types"]
postgres-types = ["dep:postgres-types"]
[lib]
name = "cllw_ore"
path = "src/lib.rs"
[[test]]
name = "common"
path = "tests/common.rs"
[[test]]
name = "sql_compare_lex_test"
path = "tests/sql_compare_lex_test.rs"
[[test]]
name = "sql_compare_test"
path = "tests/sql_compare_test.rs"
[[bench]]
name = "bench"
path = "benches/bench.rs"
harness = false
[dependencies.blake3]
version = "1.5.4"
[dependencies.hex]
version = "0.4.3"
[dependencies.postgres-types]
version = "0.2.8"
features = [
"derive",
"array-impls",
]
optional = true
[dependencies.subtle]
version = "2.6.1"
[dependencies.thiserror]
version = "1.0.56"
[dependencies.unicode-normalization]
version = "0.1.24"
[dev-dependencies.criterion]
version = "0.5.1"
[dev-dependencies.derive]
version = "1.0.0"
[dev-dependencies.features]
version = "0.10.0"
[dev-dependencies.hex]
version = "0.4.3"
[dev-dependencies.paste]
version = "1.0.15"
[dev-dependencies.postgres]
version = "0.19.9"
[dev-dependencies.quickcheck]
version = "1.0.3"