You've already forked AstralRinth
* Improve Sentry integration * remove debug routes * fix ci * sentry tracing stuff * Add spans to Sentry logging * Fix CI * Redis op instrumentation * pr comments
20 lines
431 B
TOML
20 lines
431 B
TOML
[package]
|
|
name = "modrinth-log"
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
repository.workspace = true
|
|
|
|
[dependencies]
|
|
dotenvy = { workspace = true }
|
|
eyre = { workspace = true }
|
|
sentry = { workspace = true, optional = true, features = ["tracing"] }
|
|
tracing = { workspace = true }
|
|
tracing-ecs = { workspace = true }
|
|
tracing-subscriber = { workspace = true }
|
|
|
|
[features]
|
|
sentry = ["dep:sentry"]
|
|
|
|
[lints]
|
|
workspace = true
|