garage/src/table/Cargo.toml

37 lines
872 B
TOML
Raw Permalink Normal View History

2020-04-24 10:10:01 +00:00
[package]
name = "garage_table"
2024-03-28 14:19:44 +00:00
version = "1.0.0"
2020-04-24 10:10:01 +00:00
authors = ["Alex Auvolat <alex@adnab.me>"]
edition = "2018"
license = "AGPL-3.0"
description = "Table sharding and replication engine (DynamoDB-like) for the Garage object store"
repository = "https://git.deuxfleurs.fr/Deuxfleurs/garage"
readme = "../../README.md"
2020-04-24 10:10:01 +00:00
[lib]
path = "lib.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
garage_db.workspace = true
garage_rpc.workspace = true
garage_util.workspace = true
2020-04-24 10:10:01 +00:00
opentelemetry.workspace = true
2022-02-15 19:09:43 +00:00
async-trait.workspace = true
arc-swap.workspace = true
bytes.workspace = true
hex.workspace = true
hexdump.workspace = true
tracing.workspace = true
rand.workspace = true
2020-04-24 10:10:01 +00:00
serde.workspace = true
serde_bytes.workspace = true
2020-04-24 10:10:01 +00:00
futures.workspace = true
futures-util.workspace = true
tokio.workspace = true