-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
48 lines (45 loc) · 1.31 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
[package]
name = "object-store"
version = "0.1.0"
authors = ["Stephen Cirner <scirner@figure.com>"]
edition = "2021"
[dependencies]
aes-gcm = "0.10"
async-trait = "0.1"
async-recursion = "1.0"
base64 = "0.20"
bytes = "1.0"
chrono = "0.4"
cloud-storage = { git = "https://github.com/scirner22/cloud-storage-rs.git", branch = "allow-base-url" }
env_logger = "0.10"
futures = "0.3"
futures-util = "0.3"
hex = "0.4"
linked-hash-map = { version = "0.5", features = ["serde_impl"] }
log = "0.4"
percent-encoding = "2.2"
prost = "0.9"
prost-types = "0.9"
quick-error = "2.0"
rand = "0.8"
serde = "1.0"
serde_json = "1.0"
sqlx = { version = "0.6", features = ["runtime-tokio-rustls", "postgres", "macros", "uuid", "chrono", "json"] }
tonic = "0.6"
tonic-health = "0.5"
tower = "0.4"
reqwest = { version = "0.11" }
minitrace = { git = "https://github.com/tikv/minitrace-rust.git" }
minitrace-macro = { git = "https://github.com/tikv/minitrace-rust.git" }
minitrace-datadog = { git = "https://github.com/tikv/minitrace-rust.git" }
minstant = "0.1.2"
# TODO can we upgrade this?
tokio = { version = "1.0", features = ["macros", "rt-multi-thread", "sync"] }
tokio-stream = "0.1"
url = "2.3"
uuid = { version = "1", features = ["serde", "v4"] }
[build-dependencies]
tonic-build = "0.6"
[dev-dependencies]
serial_test = "*"
testcontainers = "0.14"