-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
60 lines (55 loc) · 1.41 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
[package]
name = "outpack"
version = "0.3.0"
edition = "2021"
rust-version = "1.70"
build = "build.rs"
[lib]
crate-type = ["rlib", "cdylib"]
[dependencies]
regex = "1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1"
cached = "0.40.0"
walkdir = "2.3.2"
sha2 = "0.10.6"
sha1 = "0.10.5"
lazy_static = "1.4.0"
pest = "2.7"
pest_derive = "2.7"
itertools = "0.10.5"
tempfile = "3.6.0"
clap = { version = "4.4.8", features = ["derive"] }
anyhow = "1.0.75"
thiserror = "1.0.50"
pyo3 = { version = "0.20.0", features = ["extension-module", "abi3-py38"], optional = true }
prometheus = { version = "0.13.3", features = ["process"] }
tokio = { version = "1.35.1", features = ["fs", "rt-multi-thread"] }
axum = "0.7.4"
tracing-subscriber = "0.3.18"
tracing = "0.1.40"
tower-http = { version = "0.5.1", features = ["trace", "catch-panic", "request-id", "util"] }
tokio-util = { version = "0.7.10", features = ["io"] }
futures = "0.3.30"
tower = "0.4.13"
mime = "0.3.17"
digest = "0.10.7"
md-5 = "0.10.6"
git2 = { version = "0.19.0" }
[dev-dependencies]
assert_cmd = "2.0.6"
predicates = "2.1.2"
jsonschema = "0.16.1"
url = "2.3.1"
tempdir = "0.3.7"
tar = "0.4.38"
chrono = "0.4.33"
rand = "0.8.5"
tracing-capture = "0.1.0"
test-utils = { path = "test-utils" }
[build-dependencies]
vergen-git2 = { version = "1.0.0", features = ["rustc"] }
anyhow = "1.0.75"
[features]
python = ["dep:pyo3"]
openssl-vendored = ["git2/vendored-openssl"]