[badges.codecov]
branch = "main"
repository = "foundationdb-rs/foundationdb-rs"
service = "github"
[build-dependencies.foundationdb-gen]
default-features = false
version = "0.10.0"
[dependencies.async-recursion]
version = "1.1.1"
[dependencies.async-trait]
version = "0.1.89"
[dependencies.foundationdb-macros]
version = "0.3.3"
[dependencies.foundationdb-sys]
default-features = false
version = "0.10.0"
[dependencies.foundationdb-tuple]
version = "0.10.0"
[dependencies.futures]
version = "0.3.31"
[dependencies.num-bigint]
optional = true
version = "0.4.6"
[dependencies.rand]
features = ["default", "small_rng"]
version = "0.9.2"
[dependencies.serde]
features = ["derive"]
optional = true
version = "1.0.228"
[dependencies.serde_bytes]
optional = true
version = "0.11.19"
[dependencies.serde_json]
optional = true
version = "1.0.145"
[dependencies.static_assertions]
version = "1.1.0"
[dependencies.tracing]
optional = true
version = "0.1.41"
[dependencies.uuid]
optional = true
version = "1.18.1"
[dev-dependencies.byteorder]
version = "1.5.0"
[dev-dependencies.data-encoding]
version = "2.9.0"
[dev-dependencies.futures-util]
version = "0.3.31"
[dev-dependencies.lazy_static]
version = "1.5.0"
[dev-dependencies.pretty-bytes]
version = "0.2.2"
[dev-dependencies.sha2]
version = "0.10.9"
[dev-dependencies.tokio]
features = ["full"]
version = "1.48.0"
[dev-dependencies.tracing-subscriber]
version = "0.3.20"
[dev-dependencies.uuid]
features = ["v4"]
version = "1.18.1"
[[example]]
name = "atomic-op-counter"
path = "examples/atomic-op-counter.rs"
[[example]]
name = "blob"
path = "examples/blob.rs"
[[example]]
name = "blob-with-manifest"
path = "examples/blob-with-manifest.rs"
[[example]]
name = "class-scheduling"
path = "examples/class-scheduling.rs"
[[example]]
name = "hello-world"
path = "examples/hello-world.rs"
[[example]]
name = "instrumented"
path = "examples/instrumented.rs"
[[example]]
name = "key_selectors"
path = "examples/key_selectors.rs"
[[example]]
name = "micro-queue"
path = "examples/micro-queue.rs"
[[example]]
name = "multi_version"
path = "examples/multi_version.rs"
[[example]]
name = "simple-index"
path = "examples/simple-index.rs"
[[example]]
name = "versionstamp"
path = "examples/versionstamp.rs"
[features]
default = ["uuid"]
embedded-fdb-include = ["foundationdb-sys/embedded-fdb-include", "foundationdb-gen/embedded-fdb-include"]
fdb-5_1 = ["foundationdb-sys/fdb-5_1", "foundationdb-gen/fdb-5_1"]
fdb-5_2 = ["foundationdb-sys/fdb-5_2", "foundationdb-gen/fdb-5_2"]
fdb-6_0 = ["foundationdb-sys/fdb-6_0", "foundationdb-gen/fdb-6_0"]
fdb-6_1 = ["foundationdb-sys/fdb-6_1", "foundationdb-gen/fdb-6_1"]
fdb-6_2 = ["foundationdb-sys/fdb-6_2", "foundationdb-gen/fdb-6_2"]
fdb-6_3 = ["foundationdb-sys/fdb-6_3", "foundationdb-gen/fdb-6_3"]
fdb-7_0 = ["foundationdb-sys/fdb-7_0", "foundationdb-gen/fdb-7_0"]
fdb-7_1 = ["foundationdb-sys/fdb-7_1", "foundationdb-gen/fdb-7_1", "serde", "serde_json", "serde_bytes"]
fdb-7_3 = ["foundationdb-sys/fdb-7_3", "foundationdb-gen/fdb-7_3", "serde", "serde_json", "serde_bytes"]
fdb-7_4 = ["foundationdb-sys/fdb-7_4", "foundationdb-gen/fdb-7_4", "serde", "serde_json", "serde_bytes"]
num-bigint = ["dep:num-bigint", "foundationdb-tuple/num-bigint"]
tenant-experimental = []
trace = ["tracing"]
uuid = ["dep:uuid", "foundationdb-tuple/uuid"]
[lib]
name = "foundationdb"
path = "src/lib.rs"
[package]
authors = ["Benjamin Fry <benjaminfry@me.com>", "Vincent Rouillé <vincent@clikengo.com>", "Pierre Zemb <contact@pierrezemb.fr>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = "build.rs"
categories = ["database"]
description = """
High level client bindings for FoundationDB.
"""
documentation = "https://docs.rs/foundationdb"
edition = "2021"
keywords = ["foundationdb", "kv"]
license = "MIT/Apache-2.0"
name = "foundationdb"
readme = "README.md"
repository = "https://github.com/foundationdb-rs/foundationdb-rs"
rust-version = "1.85.1"
version = "0.10.0"
[package.metadata.docs.rs]
features = ["embedded-fdb-include", "fdb-7_4", "uuid"]
[[test]]
name = "api"
path = "tests/api.rs"
[[test]]
name = "api_ub"
path = "tests/api_ub.rs"
[[test]]
name = "atomic"
path = "tests/atomic.rs"
[[test]]
name = "database"
path = "tests/database.rs"
[[test]]
name = "directory"
path = "tests/directory.rs"
[[test]]
name = "error"
path = "tests/error.rs"
[[test]]
name = "future"
path = "tests/future.rs"
[[test]]
name = "get"
path = "tests/get.rs"
[[test]]
name = "hca"
path = "tests/hca.rs"
[[test]]
name = "metrics"
path = "tests/metrics.rs"
[[test]]
name = "range"
path = "tests/range.rs"
[[test]]
name = "tenant"
path = "tests/tenant.rs"
[[test]]
name = "timekeeper"
path = "tests/timekeeper.rs"
[[test]]
name = "tokio"
path = "tests/tokio.rs"
[[test]]
name = "trace"
path = "tests/trace.rs"
[[test]]
name = "tuple"
path = "tests/tuple.rs"
[[test]]
name = "watch"
path = "tests/watch.rs"