-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
32 lines (30 loc) · 1.46 KB
/
Cargo.toml
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
[package]
name = "jinx"
version = "0.6.0"
edition = "2021"
authors = ["Michael Ripley <[email protected]>"]
license = "AGPL-3.0-or-later"
readme = "README.md"
repository = "https://github.com/zkxs/jinx"
description = "Discord bot that handles Jinxxy license registration"
keywords = ["jinxxy", "discord", "bot", "license", "activation"]
rust-version = "1.80.1"
[dependencies]
tokio = { version = "1", features = ["rt-multi-thread"] } # Async runtime
tokio-graceful-shutdown = "0.15" # Handles SIGINT/SIGTERM/Ctrl+C
poise = { git = "https://github.com/zkxs/poise.git", branch = "current", features = ["unstable"] } # Discord bot library. Forked from https://github.com/serenity-rs/poise 0.6.1
reqwest = { version = "0.11", features = ["gzip", "json"] } # HTTP; 0.12 exists but intentionally kept back to 0.11 to reduce duplicate dependencies because old version is used by poise
serde = "1" # Serialization
tokio-rusqlite = { version = "0.6", features = ["bundled"] } # Persistence
tracing = "0.1" # Logging API
tracing-subscriber = { version = "0.3", features = ["env-filter"] } # Logger implementation
regex = "1" # Pattern matching
rand = "0.8" # RNG
dashmap = "6" # concurrent map
ahash = "0.8" # faster hashing algorithm than std
percent-encoding = "2" # URL encoding
semver = "1" # Semver parsing (for update check)
clap = { version = "4", features = ["derive"] } # command-line arg parsing
trie-rs = "0.4"
[dev-dependencies]
tracing-test = "0.2" # Allow tracing to print during unit tests