Skip to content

Commit 686acee

Browse files
committed
Update serenity
1 parent 7963e5f commit 686acee

File tree

6 files changed

+235
-121
lines changed

6 files changed

+235
-121
lines changed

Cargo.lock

Lines changed: 88 additions & 31 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 59 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ resolver = "2"
99

1010

1111
[workspace.dependencies]
12-
serenity = { version = "0.12.1", default-features = false, features = [
12+
serenity = { version = "0.12.4", default-features = false, features = [
1313
"collector",
1414
"builder",
1515
"cache",
@@ -26,9 +26,66 @@ serenity = { version = "0.12.1", default-features = false, features = [
2626
poise = "0.6.1"
2727

2828

29+
anyhow = "1.0.82"
30+
chrono = "0.4.38"
31+
chrono-humanize = "0.2.3"
32+
itertools = "0.14.0"
33+
indoc = "2.0.5"
34+
lazy_static = "1.4"
35+
rand = "0.8.5"
36+
humantime = "2.1.0"
37+
thiserror = "1.0.59"
38+
serde_json = "1.0.116"
39+
serde = "1.0.200"
40+
maplit = "1.0.2"
41+
byte-unit = { version = "5.1.4", features = ["u128"] }
42+
url = "2"
43+
regex = "1"
44+
reqwest = { version = "0.11" }
45+
tokio = { version = "1.21", features = ["macros", "fs", "rt-multi-thread"] }
46+
tokio-util = { version = "0.7.10", features = ["compat"] }
47+
futures = "0.3.30"
48+
49+
unicase = "2.6.0"
50+
51+
parking_lot = "0.12.2"
52+
53+
tracing = "0.1.40"
54+
tracing-log = "0.2.0"
55+
tracing-futures = "0.2.5"
56+
tracing-subscriber = { version = "0.3.18", features = [
57+
"std",
58+
"env-filter",
59+
"tracing-log",
60+
] }
61+
62+
63+
sqlx = "0.7.4"
64+
extend = "1.2"
65+
66+
robbb_db = { path = "crates/robbb_db" }
67+
robbb_util = { path = "crates/robbb_util" }
68+
robbb_commands = { path = "crates/robbb_commands" }
69+
# tracing-logfmt = "0.3.3"
70+
tracing-logfmt-otel = { version = "0.4.0" }
71+
72+
opentelemetry = { version = "0.21.0", features = ["trace", "logs"] }
73+
opentelemetry-otlp = { version = "0.14.0", features = [
74+
"http-proto",
75+
"reqwest-client",
76+
"grpc-tonic",
77+
] }
78+
opentelemetry_sdk = { version = "0.21.2", features = ["rt-tokio"] }
79+
tracing-opentelemetry = "0.22.0"
80+
81+
82+
pyroscope = "0.5.7"
83+
pyroscope_pprofrs = "0.2.7"
84+
85+
86+
2987
[profile.dev]
3088
split-debuginfo = "unpacked"
31-
3289
[profile.release]
3390
debug = true
3491

0 commit comments

Comments
 (0)