html terminal
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..fdeaa20 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,27 @@ +[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", +] } +tokio-stream = "0.1.14" |