-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
49 lines (43 loc) · 1.13 KB
/
Cargo.toml
File metadata and controls
49 lines (43 loc) · 1.13 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
[package]
name = "bytehub"
version = "0.1.0"
edition = "2021"
rust-version = "1.91"
license-file = "LICENSE.md"
[dependencies]
axum = { version = "0.8", features = ["macros"] }
tokio = { version = "1", features = ["full"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
async-trait = "0.1"
convex = "0.10"
maplit = "1"
uuid = { version = "1", features = ["v4", "serde"] }
chrono = { version = "0.4", features = ["serde"] }
twilight-http = "0.17"
twilight-model = "0.17"
twilight-util = "0.17"
octocrab = "0.49"
crabgraph = { version = "0.4.0-pre", features = ["rustls-provider"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
hex = "0.4"
thiserror = "2"
dotenvy = "0.15"
anyhow = "1"
reqwest = { version = "0.13", features = ["json"] }
[[test]]
name = "github_pull_request"
path = "tests/github/pull_request.rs"
[[test]]
name = "github_issue"
path = "tests/github/issue.rs"
[[test]]
name = "github_release"
path = "tests/github/release.rs"
[[test]]
name = "github_workflow_run"
path = "tests/github/workflow_run.rs"
[[test]]
name = "discord_interactions"
path = "tests/discord/interactions.rs"