-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (28 loc) · 881 Bytes
/
Cargo.toml
File metadata and controls
31 lines (28 loc) · 881 Bytes
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
[package]
name = "cupcake"
version = "0.4.0"
edition = "2024"
license = "Apache-2.0"
repository = "https://github.com/Hamuko/cupcake"
[dependencies]
chrono = "0.4"
clap = { version = "4.5", features = ["derive", "env"] }
crossfire = { version = "2.1.6", optional = true }
futures-util = "0.3"
html_parser = "0.7"
log = "0.4"
regex = "1.12"
reqwest = { version = "0.12", default-features = false, features = ["json"] }
rust_socketio = { version = "0.6", features = ["async"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
simple_logger = "5.1"
tokio = { version = "1.48", features = ["fs", "io-util", "macros", "parking_lot", "rt", "rt-multi-thread", "signal", "time"] }
tokio-util = "0.7"
url = "2.5"
[dev-dependencies]
test-case = "3.3"
[features]
default = ["crossfire_channels"]
crossfire_channels = ["dep:crossfire"]
tokio_channels = ["tokio/sync"]