[[bench]]
harness = false
name = "core_bench"
path = "benches/core_bench.rs"
[[bench]]
name = "fhe_benchmarks"
path = "benches/fhe_benchmarks.rs"
[[bench]]
name = "lsm_benchmarks"
path = "benches/lsm_benchmarks.rs"
[[bench]]
harness = false
name = "storage_bench"
path = "benches/storage_bench.rs"
[[bench]]
name = "storage_benchmarks"
path = "benches/storage_benchmarks.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.bincode]
optional = true
version = "1.3"
[dependencies.blake3]
version = "1.8"
[dependencies.bytemuck]
features = ["derive"]
version = "1.24"
[dependencies.chrono]
features = ["serde"]
version = "0.4"
[dependencies.crc32fast]
version = "1.5"
[dependencies.crossbeam]
version = "0.8"
[dependencies.dashmap]
version = "6.1"
[dependencies.futures]
version = "0.3"
[dependencies.memmap2]
optional = true
version = "0.9"
[dependencies.oxicode]
features = ["alloc"]
version = "0.1"
[dependencies.parking_lot]
version = "0.12"
[dependencies.rayon]
optional = true
version = "1.11"
[dependencies.rkyv]
version = "0.8"
[dependencies.tfhe]
default-features = false
features = ["seeder_unix", "boolean", "shortint", "integer"]
optional = true
version = "0.9"
[dependencies.thiserror]
version = "2.0"
[dependencies.tokio]
features = ["full", "rt-multi-thread", "fs", "io-util", "sync"]
version = "1.49"
[dependencies.tracing]
version = "0.1"
[dependencies.uuid]
features = ["v4", "serde"]
version = "1.19"
[dev-dependencies.approx]
version = "0.5"
[dev-dependencies.criterion]
features = ["html_reports"]
version = "0.7"
[dev-dependencies.proptest]
version = "1.9"
[dev-dependencies.tempfile]
version = "3.24"
[dev-dependencies.tokio]
features = ["full", "full", "test-util"]
version = "1.49"
[features]
compute = ["tfhe", "bincode"]
cuda = ["gpu"]
default = ["storage", "compute"]
gpu = []
metal = ["gpu"]
mmap = ["memmap2"]
parallel = ["rayon"]
storage = []
[lib]
name = "amaters_core"
path = "src/lib.rs"
[lints.clippy]
expect_used = "allow"
too_many_arguments = "allow"
type_complexity = "allow"
unwrap_used = "warn"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.nursery]
level = "allow"
priority = -1
[lints.clippy.pedantic]
level = "allow"
priority = -1
[lints.rust]
dead_code = "allow"
unsafe_op_in_unsafe_fn = "warn"
unused_imports = "allow"
unused_mut = "allow"
unused_variables = "allow"
[package]
authors = ["COOLJAPAN OU (Team KitaSan) <contact@cooljapan.tech>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["cryptography", "database-implementations", "algorithms"]
description = "Core kernel for AmateRS - Fully Homomorphic Encrypted Database"
documentation = "https://docs.rs/amaters"
edition = "2024"
homepage = "https://github.com/cool-japan/amaters"
keywords = ["fhe", "database", "encryption", "privacy", "tfhe"]
license = "MIT OR Apache-2.0"
name = "amaters-core"
readme = "README.md"
repository = "https://github.com/cool-japan/amaters"
resolver = "2"
rust-version = "1.85"
version = "0.1.0"