2020-04-24 10:10:01 +00:00
|
|
|
[package]
|
2020-07-07 11:59:22 +00:00
|
|
|
name = "garage_model"
|
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"
|
2021-03-18 20:59:17 +00:00
|
|
|
license = "AGPL-3.0"
|
2020-07-07 12:14:58 +00:00
|
|
|
description = "Core data model for the Garage object store"
|
|
|
|
repository = "https://git.deuxfleurs.fr/Deuxfleurs/garage"
|
2021-11-09 11:24:04 +00:00
|
|
|
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]
|
2023-05-07 16:12:01 +00:00
|
|
|
garage_db.workspace = true
|
|
|
|
garage_rpc.workspace = true
|
|
|
|
garage_table.workspace = true
|
|
|
|
garage_block.workspace = true
|
|
|
|
garage_util.workspace = true
|
2024-02-13 11:55:41 +00:00
|
|
|
garage_net.workspace = true
|
2020-04-24 10:10:01 +00:00
|
|
|
|
2024-02-05 12:02:02 +00:00
|
|
|
async-trait.workspace = true
|
|
|
|
arc-swap.workspace = true
|
|
|
|
blake2.workspace = true
|
|
|
|
chrono.workspace = true
|
|
|
|
err-derive.workspace = true
|
|
|
|
hex.workspace = true
|
2024-03-06 18:23:36 +00:00
|
|
|
http.workspace = true
|
2024-02-05 12:02:02 +00:00
|
|
|
base64.workspace = true
|
2024-03-14 17:21:37 +00:00
|
|
|
parse_duration.workspace = true
|
2024-02-05 12:02:02 +00:00
|
|
|
tracing.workspace = true
|
|
|
|
rand.workspace = true
|
|
|
|
zstd.workspace = true
|
|
|
|
|
|
|
|
serde.workspace = true
|
|
|
|
serde_bytes.workspace = true
|
|
|
|
|
|
|
|
futures.workspace = true
|
|
|
|
futures-util.workspace = true
|
|
|
|
tokio.workspace = true
|
|
|
|
opentelemetry.workspace = true
|
|
|
|
|
2022-05-10 11:16:57 +00:00
|
|
|
[features]
|
2024-03-08 13:11:02 +00:00
|
|
|
default = [ "lmdb", "sqlite" ]
|
2022-05-10 11:16:57 +00:00
|
|
|
k2v = [ "garage_util/k2v" ]
|
2022-09-06 15:09:43 +00:00
|
|
|
lmdb = [ "garage_db/lmdb" ]
|
|
|
|
sqlite = [ "garage_db/sqlite" ]
|