-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
63 lines (58 loc) · 1.94 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
[workspace]
members = ["metrics", "metrics/metrics-macros"]
[package]
name = "xenos"
description = "Minecraft Profile Information Proxy"
version = "0.7.2"
authors = [
"Joshua Dean Küpper <[email protected]>",
"Paul Wagner <[email protected]>"
]
license = "MIT"
repository = "https://github.com/scrayosnet/xenos/"
readme = "README.md"
documentation = "https://github.com/scrayosnet/xenos/"
homepage = "https://xenos.scrayos.net/"
keywords = ["minecraft", "gamedev", "profile", "query", "grpc"]
edition = "2021"
[dependencies]
metrics = { path = "metrics" }
prost = "0.13"
prost-types = { version = "0.13" }
redis = { version = "0.27", features = ["serde_json", "json", "aio", "tokio-comp", "async-std-comp", "connection-manager"], optional = true }
tokio = { version = "1.41", features = ["full"] }
tonic = "0.12"
tonic-health = "0.12"
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
serde = { version = "1.0", features = ["derive"] }
uuid = { version = "1.11", features = ["v4", "serde"] }
thiserror = "2.0.4"
regex = "1.11"
base64 = "0.22"
image = { version = "0.25", default-features = false, features = ["png"] }
lazy_static = "1.5"
serde_json = "1.0"
bytes = "1.8"
tower = "0.5"
hyper = "1.5"
futures = "0.3"
prometheus = { version = "0.13" }
futures-util = "0.3"
config = "0.14"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["json"] }
sentry = { version = "0.35", default-features = false, features = ["backtrace", "contexts", "panic", "debug-images", "reqwest", "rustls", "tower"] }
sentry-tracing = "0.35"
moka = { version = "0.12", features = ["future"] }
axum = "0.7"
axum-auth = "0.7"
iso8601 = { version = "0.6", features = ["serde"] }
trait-variant = "0.1"
[build-dependencies]
tonic-build = { version = "0.12", features = ["prost"] }
[dev-dependencies]
xenos = { path = ".", features = ["default", "static-testing"] }
[features]
default = []
static-testing = []
redis = ["dep:redis"]