-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
23 lines (22 loc) · 929 Bytes
/
Cargo.toml
File metadata and controls
23 lines (22 loc) · 929 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[package]
name = "rust-commit-tracker"
version = "0.2.1"
edition = "2024"
description = "A Rust application that monitors Facepunch's Rust game commits and sends Discord notifications"
license = "MIT"
repository = "https://github.com/kWAYTV/rust-commit-tracker"
homepage = "https://github.com/kWAYTV/rust-commit-tracker"
documentation = "https://github.com/kWAYTV/rust-commit-tracker#readme"
keywords = ["rust", "discord", "notifications", "commits", "monitoring"]
categories = ["command-line-utilities", "web-programming"]
authors = ["kWAYTV"]
[dependencies]
chrono = { version = "0.4.41", features = ["serde"] }
env_logger = "0.11.8"
log = "0.4.27"
reqwest = { version = "0.12.16", features = ["json"] }
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.140"
sqlx = { version = "0.8.6", features = ["runtime-tokio-rustls", "sqlite"] }
tokio = { version = "1.45.1", features = ["full"] }
toml = "0.8.22"