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
[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"