-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
48 lines (43 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
# SPDX-FileCopyrightText: 2023 Guillaume Girol <[email protected]>
#
# SPDX-License-Identifier: GPL-3.0-only
[package]
name = "nixseparatedebuginfod"
version = "0.4.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.release]
debug = true
[dependencies]
anyhow = "1.0.68"
base16 = "0.2.1"
compress-tools = { version = "0.15.0", features = [ "tokio_support" ] }
directories = "5"
futures-util = "0.3"
object = "0.36"
once_cell = "1.17.0"
sqlx = { version = "0.7", features = [ "runtime-tokio", "sqlite" ] }
tokio = { version = "1.24.1", features = ["process", "fs", "sync"] }
tokio-util = { version = "0.7.4", features = ["io-util"] }
walkdir = "2.3.2"
sha2 = "0.10.6"
axum = "0.7"
axum-macros = "0.4"
clap = { version = "4", features = [ "derive" ] }
tower-http = { version = "0.5", features = [ "trace" ] }
tracing = "0.1.37"
tracing-subscriber = { version = "0.3.16", features = [ "env-filter" ] }
http = "1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1"
tempfile = "3"
async-trait = "0.1"
async-recursion = "1"
reqwest = { version = "0.12.0", features = [ "stream" ] }
tikv-jemallocator = "0.6.0"
[dev-dependencies]
assert_cmd = "2"
rand = "0.8"
prctl = "1"
maplit = "1"
reqwest = { version = "0.12.0", features = [ "blocking" ] }