pesde/registry/Cargo.toml

51 lines
1.2 KiB
TOML
Raw Normal View History

2024-07-30 11:37:54 +01:00
[package]
name = "pesde-registry"
version = "0.7.0"
edition = "2021"
2024-11-27 20:08:33 +00:00
repository = "https://github.com/pesde-pkg/index"
2024-07-30 11:37:54 +01:00
publish = false
[dependencies]
2024-08-12 10:55:21 +01:00
actix-web = "4.9.0"
2024-07-30 11:37:54 +01:00
actix-cors = "0.7.0"
2024-11-10 16:20:03 +00:00
actix-governor = "0.7.0"
2024-07-30 11:37:54 +01:00
dotenvy = "0.15.7"
2024-11-28 21:44:42 +00:00
thiserror = "2.0.3"
2024-07-30 11:37:54 +01:00
tantivy = "0.22.0"
semver = "1.0.23"
chrono = { version = "0.4.38", features = ["serde"] }
2024-11-28 21:44:42 +00:00
url = "2.5.4"
2024-10-14 19:16:15 +01:00
futures = "0.3.31"
2024-11-28 21:44:42 +00:00
tokio = "1.41.1"
2024-11-10 16:20:03 +00:00
tempfile = "3.14.0"
2024-11-05 19:44:24 +00:00
fs-err = { version = "3.0.0", features = ["tokio"] }
2024-11-10 15:43:25 +00:00
async-stream = "0.3.6"
2024-07-30 11:37:54 +01:00
git2 = "0.19.0"
2024-11-28 21:44:42 +00:00
gix = { version = "0.68.0", default-features = false, features = [
2024-10-25 09:59:33 +01:00
"blocking-http-transport-reqwest-rust-tls",
"credentials",
2024-09-02 15:49:40 +01:00
] }
2024-11-28 21:44:42 +00:00
serde = "1.0.215"
serde_json = "1.0.133"
2024-09-02 15:49:40 +01:00
serde_yaml = "0.9.34"
toml = "0.8.19"
convert_case = "0.6.0"
sha2 = "0.10.8"
2024-07-30 11:37:54 +01:00
rusty-s3 = "0.5.0"
2024-11-10 16:20:03 +00:00
reqwest = { version = "0.12.9", features = ["json", "rustls-tls"] }
constant_time_eq = "0.3.1"
2024-07-30 11:37:54 +01:00
2024-11-05 19:44:24 +00:00
tokio-tar = "0.3.1"
2024-11-28 21:44:42 +00:00
async-compression = { version = "0.4.18", features = ["tokio", "gzip"] }
2024-07-30 11:37:54 +01:00
log = "0.4.22"
pretty_env_logger = "0.5.0"
2024-11-30 10:29:27 +00:00
sentry = { version = "0.35.0", default-features = false, features = ["backtrace", "contexts", "debug-images", "panic", "reqwest", "rustls", "log"] }
sentry-actix = "0.35.0"
2024-07-30 11:37:54 +01:00
2024-11-28 21:44:42 +00:00
pesde = { path = "..", features = ["wally-compat"] }