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
[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]
ansi-to-html = { version = "0.1.3", features = ["lazy-init"] }
async-std = "1.12.0"
axum = { version = "0.6.18", features = [
  "ws",
  "tokio",
  "http1",
  "matched-path",
] }
futures = "0.3.28"
minify-html = "0.11.1"
paste = "1.0.12"
tokio = { version = "1.28.2", features = [
  "macros",
  "net",
  "sync",
  "rt-multi-thread",
  "process",
  "parking_lot",
] }
tokio-stream = "0.1.14"
futures-util = "0.3.28"
strip-ansi-escapes = "0.1.1"
serenity = { version = "0.11.5", features = [
  "builder",
  "client",
  # "framework",
  "utils",
  "rustls_backend",
  "gateway",
  # "standard_framework",
], default-features = false }
poise = "0.5.5"
anyhow = "1.0.71"
strum = { version = "0.24.1", features = [
  "strum_macros",
  "derive",
  "std",
], default-features = false }
regex = { version = "1.8.4", features = ["std"], default-features = false }
minify-js = "0.4.3"

[profile.release]
lto = true
strip = true