html terminal
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[package]
name = "panel"
version = "0.1.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
axum = { version = "0.6.18", features = [
  "tokio",
  "http1",
], default-features = false }
futures = "0.3.28"
paste = "1.0.12"
tokio = { version = "1.28.2", features = [
  "macros",
  "net",
  "sync",
  "rt",
  "parking_lot",
  "time",
], default-features = false }
tokio-stream = "0.1.14"
futures-util = "0.3.28"
serenity = { version = "0.12", features = [
  "builder",
  "client",
  "utils",
  "rustls_backend",
  "cache",
  "gateway",
], default-features = false }
poise = { git = "https://github.com/serenity-rs/poise" }
anyhow = "1.0.75"
regex = { version = "1.8.4", features = ["std"], default-features = false }
minify-js = "0.5.6"
convert_case = "0.6.0"
parse_duration = "2.1.1"
serde = "1.0"
btparse = "0.1.1"
mindus = { version = "5.0.7", features = [], default-features = false }
oxipng = { git = "https://github.com/shssoichiro/oxipng", branch = "master", default-features = false }
flate2 = { version = "1.0", features = [
  "cloudflare_zlib",
], default-features = false }
strip-ansi-escapes = "0.2.0"
phf = { version = "0.11.2", features = ["macros"] }
itertools = "0.11.0"
emoji = { git = "https://github.com/Apricot-Conservation-Project/emoji" }
serde_derive = "1.0.193"
deser-hjson = "2.2.4"
serde_json = "1.0.109"
strconv = "0.1.0"

[profile.release]
strip = true
lto = "thin"

[build-dependencies]
minify-html = "0.11.1"

[profile.dev.package.mindus]
opt-level = 3

[patch.crates-io]
serenity = { git = "https://github.com/bend-n/serenity", branch = "opt" }