-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
55 lines (52 loc) · 1.61 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[package]
name = "bytecon_data_store"
version = "0.1.1"
edition = "2021"
authors = ["Austin Heller"]
description = "A library for storing ByteConverter implementations conveniently."
readme = "README.md"
repository = "https://github.com/AustinHellerRepo/bytecon_data_store.git"
license = "MIT OR Apache-2.0"
keywords = ["networking", "database", "data", "storage", "distributed"]
categories = ["caching", "database-implementations"]
[features]
default = []
directory = [
"rusqlite",
"rand",
"rand_chacha",
]
remote = [
"tokio",
"tokio-rustls",
"rustls",
"rustls-pemfile",
"chrono",
"bytecon/tokio",
"bytecon_tls",
"cloneless_cow",
]
postgres = [
"tokio",
"tokio-postgres",
"deadpool-postgres",
]
[dependencies]
thiserror = { version = "1.0.66" }
bytecon = { version = "0.1", features = ["rand"] }
futures = { version = "0.3" }
rusqlite = { version = "0.32.1", features = ["bundled"], optional = true }
rand = { version = "0.8.5", optional = true }
rand_chacha = { version = "0.3", optional = true }
tokio = { version = "1", features = ["full"], optional = true }
tokio-rustls = { version = "0.23", optional = true }
rustls = { version = "0.21", optional = true }
rustls-pemfile = { version = "1.0", optional = true }
chrono = { version = "0.4.38", optional = true }
tokio-postgres = { version = "0.7.12", optional = true }
deadpool-postgres = { version = "0.8", optional = true }
bytecon_tls = { version = "0.1", optional = true}
cloneless_cow = { version = "0.1", optional = true }
[dev-dependencies]
tempfile = { version = "3.13.0" }
rcgen = { version = "0.13.1", features = ["pem"] }