0
0
mirror of https://github.com/tursodatabase/libsql.git synced 2024-12-15 05:09:50 +00:00
libsql/bottomless/Cargo.toml
Lucio Franco 67eae4c461
bottomless: upgrade s3 sdk to 1.0 (#1302)
* bottomless: upgrade s3 sdk to 1.0

* fix behavior version
2024-04-10 23:13:15 +00:00

40 lines
1.1 KiB
TOML

[package]
name = "bottomless"
version = "0.1.18"
edition = "2021"
license = "MIT"
keywords = ["libsql", "sqlite", "s3", "wal", "replication"]
repository = "https://github.com/tursodatabase/libsql"
readme = "bottomless/README.md"
description = "Bottomless replication for libSQL"
[dependencies]
anyhow = "1.0.66"
async-compression = { version = "0.4.4", features = ["tokio", "gzip", "zstd"] }
aws-config = { version = "1" }
aws-sdk-s3 = { version = "1" }
bytes = "1"
libsql-sys = { path = "../libsql-sys" }
libsql_replication = { path = "../libsql-replication" }
tokio = { version = "1.22.2", features = ["rt-multi-thread", "net", "io-std", "io-util", "time", "macros", "sync", "fs"] }
tokio-util = "0.7"
tracing = "0.1.37"
tracing-subscriber = "0.3.16"
arc-swap = "1.6"
chrono = "0.4.23"
uuid = "1.4.1"
rand = "0.8.5"
futures-core = "0.3.29"
serde = { version = "1.0.196", features = ["derive"] }
[features]
default = []
libsql_linked_statically = []
encryption = ["libsql-sys/encryption", "libsql_replication/encryption"]
[lib]
crate-type = ["rlib", "staticlib"]
[package.metadata.dist]
dist = false