pesde/registry/Cargo.toml

56 lines
1 KiB
TOML
Raw Normal View History

2024-07-30 11:37:54 +01:00
[package]
name = "pesde-registry"
version = "0.7.0"
edition = "2021"
repository = "https://github.com/daimond113/pesde-index"
publish = false
[dependencies]
2024-08-12 10:55:21 +01:00
actix-web = "4.9.0"
2024-08-08 16:59:59 +01:00
actix-multipart = "0.7.2"
2024-07-30 11:37:54 +01:00
actix-cors = "0.7.0"
actix-governor = "0.5.0"
dotenvy = "0.15.7"
thiserror = "1.0.63"
tantivy = "0.22.0"
semver = "1.0.23"
chrono = { version = "0.4.38", features = ["serde"] }
2024-08-12 10:55:21 +01:00
url = "2.5.2"
futures = "0.3.30"
2024-09-02 15:49:40 +01:00
tempfile = "3.12.0"
2024-07-30 11:37:54 +01:00
git2 = "0.19.0"
2024-09-02 15:49:40 +01:00
gix = { version = "0.66.0", default-features = false, features = [
"blocking-http-transport-reqwest-rust-tls",
"credentials",
] }
serde = "1.0.209"
serde_json = "1.0.127"
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-09-02 15:49:40 +01:00
reqwest = { version = "0.12.7", features = ["json", "rustls-tls"] }
constant_time_eq = "0.3.1"
2024-07-30 11:37:54 +01:00
tar = "0.4.41"
2024-09-02 15:49:40 +01:00
flate2 = "1.0.33"
2024-07-30 11:37:54 +01:00
log = "0.4.22"
pretty_env_logger = "0.5.0"
sentry = "0.34.0"
sentry-log = "0.34.0"
sentry-actix = "0.34.0"
2024-09-02 15:49:40 +01:00
pesde = { path = "..", features = [
"roblox",
"lune",
"luau",
"wally-compat",
"git2",
] }