-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
51 lines (48 loc) · 1.77 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
[package]
name = "webgwas-backend"
version = "0.8.0"
edition = "2021"
authors = ["Michael Zietz <[email protected]>"]
[lib]
name = "webgwas_backend"
crate-type = ["lib"]
[profile.dev.package.faer]
opt-level = 3
[dependencies]
anyhow = "1.0.89"
aws-config = { version = "1.5.6", features = ["behavior-version-latest"] }
aws-sdk-s3 = "1.51.0"
axum = { version = "0.7.6", features = ["macros", "query"] }
axum-macros = "0.4.2"
env_logger = "0.11.5"
hashlru = "0.11.1"
itertools = "0.13.0"
log = "0.4.22"
serde = "1.0.210"
serde_json = "1.0.128"
sqlx = { version = "0.8.2", features = ["runtime-tokio", "sqlite"] }
tokio = { version = "1.40.0", features = ["macros", "rt-multi-thread"] }
toml = "0.8.19"
uuid = { version = "1.10.0", features = ["serde", "v4"] }
tower-http = { version = "0.5.2", features = ["cors", "compression-zstd", "trace", "compression-full"] }
clap = { version = "4.5.18", features = ["color", "derive", "help"] }
rusqlite = "0.32.1"
polars = { git = "https://github.com/pola-rs/polars", version = "0.43.1", features = ["decompress", "is_in", "lazy", "parquet", "performant", "regex", "rows", "zip_with"] }
zstd = "0.13.2"
statrs = "0.17.1"
arrow = "53.0.0"
faer = { version = "0.19.4", features = ["perf-warn", "rayon", "nightly"] }
faer-ext = { path = "/Users/zietzm/Documents/git/faer-ext/", version = "0.2.0", features = ["polars"] }
mdav = { git = "https://github.com/zietzm/mdav", version = "0.5.2" }
indicatif = "0.17.8"
zip = "2.2.0"
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["fmt", "chrono", "env-filter", "json", "local-time", "time"] }
tracing-bunyan-formatter = "0.3.9"
hyper = { version = "1.4.1", features = ["full"] }
tracing-appender = "0.2.3"
http = "1.1.0"
num = "0.4.3"
thiserror = "1.0.64"
tokio-util = "0.7.12"
rayon = "1.10.0"