[dependencies.amaters-core]
version = "0.1.0"
[dependencies.amaters-net]
version = "0.1.0"
[dependencies.anyhow]
version = "1.0"
[dependencies.async-trait]
version = "0.1"
[dependencies.dashmap]
version = "6.1"
[dependencies.futures]
version = "0.3"
[dependencies.oxicode]
features = ["alloc"]
optional = true
version = "0.1"
[dependencies.parking_lot]
version = "0.12"
[dependencies.prost]
version = "0.14"
[dependencies.rustls]
features = ["ring"]
version = "0.23"
[dependencies.serde]
features = ["derive"]
optional = true
version = "1.0"
[dependencies.tfhe]
default-features = false
features = ["seeder_unix"]
optional = true
version = "0.9"
[dependencies.thiserror]
version = "2.0"
[dependencies.tokio]
features = ["full", "full"]
version = "1.49"
[dependencies.tokio-rustls]
version = "0.26"
[dependencies.tonic]
features = ["gzip", "transport", "tls-ring", "tls-webpki-roots"]
version = "0.14"
[dependencies.tracing]
version = "0.1"
[dependencies.uuid]
features = ["v4", "serde"]
version = "1.19"
[dev-dependencies.anyhow]
version = "1.0"
[dev-dependencies.proptest]
version = "1.9"
[dev-dependencies.tempfile]
version = "3.24"
[dev-dependencies.tokio]
features = ["full", "full", "test-util"]
version = "1.49"
[dev-dependencies.tracing-subscriber]
features = ["env-filter", "fmt"]
version = "0.3"
[[example]]
name = "batch"
path = "examples/batch.rs"
[[example]]
name = "fhe_operations"
path = "examples/fhe_operations.rs"
[[example]]
name = "filter_query"
path = "examples/filter_query.rs"
[[example]]
name = "persistence"
path = "examples/persistence.rs"
[[example]]
name = "queries"
path = "examples/queries.rs"
[[example]]
name = "quickstart"
path = "examples/quickstart.rs"
[features]
default = []
fhe = ["tfhe"]
serialization = ["serde", "oxicode"]
[lib]
name = "amaters_sdk_rust"
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 = ["api-bindings", "database"]
description = "Rust SDK for AmateRS"
edition = "2024"
keywords = ["sdk", "client", "database"]
license = "MIT OR Apache-2.0"
name = "amaters-sdk-rust"
readme = "README.md"
repository = "https://github.com/cool-japan/amaters"
resolver = "2"
rust-version = "1.85"
version = "0.1.0"
[[test]]
name = "integration_test"
path = "tests/integration_test.rs"