[package]
edition = "2021"
name = "cleansh-core"
version = "0.1.6"
authors = ["Relay"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core library for CleanSH, providing essential data sanitization rules, compilation, and application logic independent of the CLI."
homepage = "https://github.com/KarmaYama/cleansh-workspace"
readme = "README.md"
keywords = [
"sanitization",
"redaction",
"data-security",
"privacy",
"core-logic",
]
categories = [
"data-structures",
"parsing",
"text-processing",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/KarmaYama/cleansh-workspace"
[lib]
name = "cleansh_core"
path = "src/lib.rs"
[[test]]
name = "config_integration_tests"
path = "tests/config_integration_tests.rs"
[[test]]
name = "entropy_config_test"
path = "tests/entropy_config_test.rs"
[[test]]
name = "profile_tests"
path = "tests/profile_tests.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.async-trait]
version = "0.1.89"
[dependencies.bincode]
version = "2.0"
features = ["serde"]
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.cleansh-entropy]
version = "0.1.4"
[dependencies.dirs]
version = "6.0"
[dependencies.hex]
version = "0.4"
[dependencies.hmac]
version = "0.12"
[dependencies.lazy_static]
version = "1.4"
[dependencies.log]
version = "0.4"
[dependencies.once_cell]
version = "1.19"
[dependencies.regex]
version = "1.10"
[dependencies.reqwest]
version = "0.12"
features = [
"json",
"blocking",
"rustls-tls",
]
default-features = false
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.serde_yml]
version = "0.0.12"
[dependencies.sha2]
version = "0.10"
[dependencies.strip-ansi-escapes]
version = "0.2.1"
[dependencies.thiserror]
version = "2.0"
[dependencies.tinytemplate]
version = "1.2"
[dependencies.tokio]
version = "1.48.0"
features = ["full"]
[dependencies.uuid]
version = "1.18"
features = [
"serde",
"v4",
]
[dev-dependencies.tempfile]
version = "3.10"
[dev-dependencies.test-log]
version = "0.2.14"