-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
37 lines (34 loc) · 1.09 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
[package]
name = "linen_closet"
version = "0.0.1"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "linen_closet"
crate-type = ["cdylib"]
[dependencies]
google-sheets4 = "5.0.3"
hyper = { version = "0.14.27", features = ["server", "runtime"] }
hyper-rustls = "0.24.1"
serde = { version = "1.0.189", features = ["derive"] }
serde_json = "1.0.107"
tokio = { version = "1.33.0", features = ["macros", "net", "rt", "time", "sync", "rt-multi-thread"] }
pyo3 = { version = "0.19.0", optional = true }
google-drive3 = "5.0.3"
anyhow = { version = "1.0.75", features = [] }
calamine = "0.22.1"
futures = { version = "0.3.29", features = ["futures-executor", "thread-pool"] }
bytes = "1.5.0"
seekable_reader = "0.1.2"
serde_yaml = "0.9.27"
futures-retry = "0.6.0"
cross = "0.2.5"
chrono = "0.4.31"
backoff = { version = "0.4.0", features = ["tokio"] }
clap = { version = "4.4.10", features = ["derive"] }
aws-sdk-s3 = "1.4.0"
time-humanize = { version = "0.1.3", features = ["time"] }
[features]
default = ["python"]
python = ["pyo3"]
cli = []