cobble 0.1.1

A flexible embedded key-value storage engine for distributed systems as well as single-node applications.
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"
name = "cobble"
version = "0.1.1"
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A flexible embedded key-value storage engine for distributed systems as well as single-node applications."
homepage = "https://cobble-project.github.io/cobble/latest/"
readme = "README.md"
keywords = [
    "kv",
    "lsm",
    "storage",
]
categories = ["database-implementations"]
license = "Apache-2.0"
repository = "https://github.com/cobble-project/cobble"

[features]
default = []
storage-all = [
    "storage-alluxio",
    "storage-cos",
    "storage-ftp",
    "storage-hdfs",
    "storage-oss",
    "storage-s3",
]
storage-alluxio = ["opendal/services-alluxio"]
storage-cos = ["opendal/services-cos"]
storage-ftp = ["opendal/services-ftp"]
storage-hdfs = ["opendal/services-hdfs"]
storage-oss = ["opendal/services-oss"]
storage-s3 = ["opendal/services-s3"]

[lib]
name = "cobble"
path = "src/lib.rs"

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

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

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

[dependencies.arc-swap]
version = "1.7.1"

[dependencies.bytes]
version = "1.11.0"

[dependencies.config]
version = "0.15.19"
features = [
    "yaml",
    "ini",
]

[dependencies.crc32fast]
version = "1.4.2"

[dependencies.dashmap]
version = "6.1.0"

[dependencies.foyer]
version = "0.22.3"

[dependencies.log]
version = "0.4.29"
features = ["serde"]

[dependencies.log4rs]
version = "1.3.0"

[dependencies.lz4_flex]
version = "0.13.0"
default-features = false

[dependencies.metrics]
version = "0.22.3"

[dependencies.opendal]
version = "0.54.0"
features = ["services-fs"]
default-features = false

[dependencies.parquet]
version = "58.0.0"

[dependencies.rand]
version = "0.8.5"

[dependencies.serde]
version = "1.0.219"
features = [
    "derive",
    "derive",
]

[dependencies.serde_json]
version = "1.0.143"

[dependencies.serde_yaml]
version = "0.9.34"

[dependencies.serial_test]
version = "3.3.1"

[dependencies.size]
version = "0.5.0"
features = ["serde"]

[dependencies.tempfile]
version = "3.20.0"

[dependencies.thiserror]
version = "2.0.16"

[dependencies.tokio]
version = "1.49.0"
features = [
    "rt",
    "rt-multi-thread",
    "macros",
]

[dependencies.toml]
version = "0.9.8"

[dependencies.url]
version = "2.5.7"

[dependencies.uuid]
version = "1.18.0"
features = [
    "v4",
    "v4",
]

[target."cfg(unix)".dependencies.positioned-io]
version = "0.3.3"