oxigdal-security 0.1.3

Enterprise security features for OxiGDAL: encryption, access control, compliance
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
rust-version = "1.85"
name = "oxigdal-security"
version = "0.1.3"
authors = ["COOLJAPAN OU (Team Kitasan)"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Enterprise security features for OxiGDAL: encryption, access control, compliance"
homepage = "https://github.com/cool-japan/oxigdal"
documentation = "https://docs.rs/oxigdal-security"
readme = "README.md"
keywords = [
    "security",
    "encryption",
    "access-control",
    "compliance",
    "audit",
]
categories = [
    "cryptography",
    "authentication",
    "science",
]
license = "Apache-2.0"
repository = "https://github.com/cool-japan/oxigdal"
resolver = "2"

[lib]
name = "oxigdal_security"
path = "src/lib.rs"
doctest = false

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

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

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

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

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

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

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

[[bench]]
name = "security_bench"
path = "benches/security_bench.rs"
harness = false

[dependencies.aes-gcm]
version = "0.10"

[dependencies.argon2]
version = "0.5"

[dependencies.base64]
version = "0.22"

[dependencies.chacha20poly1305]
version = "0.10"

[dependencies.chrono]
version = "0.4"
features = [
    "clock",
    "serde",
]
default-features = false

[dependencies.dashmap]
version = "6"

[dependencies.getrandom]
version = "0.4"

[dependencies.oxiarc-zstd]
version = "0.2.6"

[dependencies.parking_lot]
version = "0.12"

[dependencies.petgraph]
version = "0.8"

[dependencies.regex]
version = "1"

[dependencies.ring]
version = "0.17"

[dependencies.rustls]
version = "0.23"

[dependencies.rustls-pemfile]
version = "2"

[dependencies.scirs2-core]
version = "0.3.4"
features = ["random"]

[dependencies.serde]
version = "1"
features = [
    "derive",
    "alloc",
]
default-features = false

[dependencies.serde_json]
version = "1"

[dependencies.sha2]
version = "0.10"

[dependencies.thiserror]
version = "2"
default-features = false

[dependencies.tokio]
version = "1"
features = ["full"]

[dependencies.tracing]
version = "0.1"

[dependencies.uuid]
version = "1"
features = [
    "v4",
    "serde",
]

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

[dev-dependencies.criterion]
version = "0.8"
features = ["html_reports"]

[dev-dependencies.tempfile]
version = "3"

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