You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
887 B
28 lines
887 B
[package] |
|
name = "u_panel" |
|
version = "0.1.0" |
|
authors = ["plazmoid <kronos44@mail.ru>"] |
|
edition = "2021" |
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html |
|
|
|
[dependencies] |
|
actix-cors = "0.6.1" |
|
actix-web = "4.1" |
|
anyhow = { workspace = true } |
|
futures-util = "0.3.21" |
|
mime_guess = "2.0.4" |
|
once_cell = "1.8.0" |
|
rust-embed = { version = "6.3.0", features = ["debug-embed", "compression"] } |
|
serde = { workspace = true } |
|
serde_json = { workspace = true } |
|
strum = { version = "0.22.0", features = ["derive"] } |
|
tokio = { workspace = true, features = ["rt", "rt-multi-thread"] } |
|
tracing = { workspace = true } |
|
tracing-subscriber = { workspace = true } |
|
tracing-appender = { workspace = true } |
|
shlex = "1.1.0" |
|
structopt = "0.3.21" |
|
thiserror = "1.0.31" |
|
uuid = { workspace = true } |
|
u_lib = { version = "*", path = "../../lib/u_lib", features = ["panel"] }
|
|
|