-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
executable file
·37 lines (33 loc) · 1.15 KB
/
Cargo.toml
File metadata and controls
executable file
·37 lines (33 loc) · 1.15 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
[package]
name = "black-mesa"
version = "0.8.0"
edition = "2021"
authors = ["Tyler Thompson <me@dhopcs.org>"]
description = "Black Mesa is a Discord Moderation bot designed with Performance, Reliability and Customisation in mind."
license = "GPL-3.0-or-later"
[dependencies]
tokio = { version = "1", features = ["full"] }
futures = "0.3"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
tracing-opentelemetry = "0.28"
opentelemetry = "0.27"
opentelemetry_sdk = { version = "0.27", features = ["rt-tokio"] }
opentelemetry-otlp = { version = "0.27", features = ["grpc-tonic"] }
tonic = { version = "0.12", features = ["transport"] }
dotenv = "0.15"
base64 = "0.22"
rustc_version = "0.4"
chrono = "0.4"
url = "2.5"
lazy_static = "1.5"
config = "0.15"
reqwest = { version = "0.13", features = ["json"] }
reqwest-middleware = "0.5"
reqwest-tracing = { version = "0.7", features = ["opentelemetry_0_27"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
# bm-lib = { path = "../lib" }
bm-lib = { git = "https://github.com/blackmesadev/lib.git" }
[build-dependencies]
rustc_version = "0.4"