-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
70 lines (65 loc) · 1.98 KB
/
Cargo.toml
File metadata and controls
70 lines (65 loc) · 1.98 KB
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
64
65
66
67
68
69
70
[package]
name = "stackpit"
version = "0.1.3"
edition = "2021"
description = "Lightweight, self-hosted error tracking and event monitoring"
authors = ["Franz Geffke <mail@gofranz.com>"]
license = "MIT"
repository = "https://github.com/franzos/stackpit"
homepage = "https://github.com/franzos/stackpit"
keywords = ["error-tracking", "monitoring", "observability", "self-hosted", "sentry"]
categories = ["web-programming", "development-tools"]
readme = "README.md"
[features]
default = ["sqlite"]
sqlite = ["sqlx/sqlite"]
postgres = ["sqlx/postgres"]
[dependencies]
anyhow = "1"
form_urlencoded = "1"
askama = "0.15"
axum = { version = "0.8", features = ["multipart"] }
chrono = { version = "0.4", features = ["serde"] }
clap = { version = "4", features = ["derive"] }
memchr = "2"
sqlx = { version = "0.8", features = ["runtime-tokio", "chrono", "migrate", "macros"], default-features = false }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tokio = { version = "1", features = ["full"] }
tokio-util = "0.7"
toml = "1"
tower-http = { version = "0.6", features = ["cors", "decompression-gzip", "decompression-zstd", "limit", "timeout"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
uuid = { version = "1", features = ["v4"] }
zstd = "0.13"
dashmap = "6"
parking_lot = "0.12"
simple_hll = "0.0.4"
charts-rs = "0.3"
reqwest = { version = "0.13", features = ["json", "rustls"], default-features = false }
aes-gcm = "0.10"
base64 = "0.22"
rand = "0.10"
hmac = "0.12"
sha1 = "0.10"
sha2 = "0.10"
hex = "0.4"
subtle = "2"
sourcemap = "9"
zip = { version = "8", default-features = false, features = ["deflate"] }
[package.metadata.generate-rpm]
assets = [
{ source = "target/release/stackpit", dest = "/usr/bin/stackpit", mode = "755" },
]
[package.metadata.deb]
maintainer = "Franz Geffke <mail@gofranz.com>"
section = "web"
assets = [
["target/release/stackpit", "usr/bin/", "755"],
]
[profile.release]
opt-level = "s"
lto = "fat"
codegen-units = 1
strip = "symbols"