-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
39 lines (37 loc) · 1.07 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
33
34
35
36
37
38
39
[package]
name = "aurora-bot"
description = "Fast, smart, lightweight, client of the Aurora Bot project."
repository = "https://github.com/keygenqt/aurora-bot"
version = "0.0.1"
authors = ["Vitaliy Zarubin <[email protected]"]
license = "Apache-2.0"
edition = "2021"
[profile.release]
# https://github.com/johnthagen/min-sized-rust#strip-symbols-from-binary
opt-level = "z"
strip = true
lto = true
codegen-units = 1
panic = "abort"
[dependencies]
futures = "0.3.31"
colored = "3.0.0"
regex = "1.11.1"
futures-util = "0.3.31"
dialoguer = "0.11.0"
nipper = "0.1.9"
color-eyre = "0.6.3"
dbus-tokio = "0.7.6"
dbus-crossroads = "0.5.2"
dbus = { version = "0.9", features=["futures"] }
serde_json = "1.0.136"
serde_variant = "0.1.3"
serde = { version = "1.0.217", features = ["derive"] }
reqwest = { version = "0.12", features = ["json", "cookies"] }
reqwest_cookie_store = "0.8.0"
reqwest-websocket = "0.4.4"
tokio = { version = "1.0", features = ["macros", "rt-multi-thread", "io-std"] }
clap = { version = "4.5.26", features = ["derive"] }
clap-cargo = "0.15.2"
russh = "0.50.0"
walkdir = "2.5.0"