-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
89 lines (77 loc) · 1.83 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
[package]
name = "pombase-chado-json"
version = "210.1.0"
authors = ["Kim Rutherford <[email protected]>"]
edition = "2021"
rust-version = "1.76"
[lib]
name = "pombase"
path = "src/pombase/lib.rs"
[dependencies]
serde_with = "3.11"
serde_derive = "1.0"
serde_json = "1.0"
getopts = "0.2.21"
regex = "1.11"
bit-set = "0.8"
chrono = { version = "0.4.38", default-features = false, features = ["clock", "serde"] }
flate2 = "1.0"
lazy_static = "1.5"
once_cell = "1.20"
uuid = { version = "1.10.0", features = ["v4", "serde", ] }
bytes = "1.8"
tokio = { version = "^1.41", default-features = false, features = ["rt-multi-thread"]}
async-recursion = "1.1"
deadpool-postgres = "0.14"
deadpool = "0.12"
anyhow = "1.0"
itertools = "0.13"
csv = "1.1.6"
rusqlite = { version = "0.32.1", features = ["bundled", "serde_json"] }
tower = { version = "0.5", features = ["util"] }
tower-http = { version = "0.6.1", features = ["fs", "normalize-path"] }
axum = { version = "0.7", features = ["macros"] }
axum-macros = "0.4.1"
http-body-util = "0.1.2"
percent-encoding = "2.3.1"
mime_guess = "2.0"
tracing = "0.1.37"
tracing-subscriber = "0.3.16"
indexmap = "2"
[dependencies.serde]
version = "1.0"
features = ["rc", "derive"]
[dependencies.zstd]
version = "0.13"
features = ["zstdmt"]
[dependencies.flexstr]
version = "0.9.0"
features = ["serde"]
[dependencies.tokio-postgres]
version = "0.7"
features = ["with-serde_json-1", "with-uuid-1"]
[dependencies.r2d2_postgres]
version = "0.18.0"
[dependencies.r2d2]
version = "0.8.9"
[dependencies.reqwest]
version = "0.12"
default-features = false
features = ["json"]
[profile.dev]
opt-level = 0
debug = true
incremental = true
lto = "off"
[profile.releasedev]
inherits = "release"
opt-level = 1
debug = true
codegen-units = 256
incremental = true
lto = "off"
[profile.release]
opt-level = 3
codegen-units = 1
debug = true
lto = true