yarrr/Cargo.toml

64 lines
1.5 KiB
TOML
Raw Normal View History

2023-06-04 21:12:03 -04:00
[package]
name = "yarrr"
version = "0.1.0"
edition = "2021"
2025-01-22 23:13:50 -05:00
description = "An edgy web server for files"
2023-06-04 21:12:03 -04:00
readme = "README.md"
2025-01-22 23:13:50 -05:00
repository = "https://git.ngni.us/NGnius/yarrr"
2023-06-04 21:12:03 -04:00
license = "MIT OR Apache-2.0"
2025-01-22 23:13:50 -05:00
keywords = ["ngnius", "yarrr"]
categories = ["gui", "wasm"]
2023-06-04 21:12:03 -04:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "frontend"
[[bin]]
name = "backend"
[dependencies]
reqwest = { version = "0.12", features = ["json"] }
2023-06-04 21:12:03 -04:00
serde = { version = "1.0.132", features = ["derive"] }
uuid = { version = "1.0.0", features = ["serde"] }
futures = "0.3"
bytes = "1.0"
yew_icons = {version = "0.7", features = [
"FeatherFolder",
"FeatherCornerLeftUp",
"FeatherFilm",
"FeatherImage",
"FeatherFile",
"FeatherRefreshCcw",
"LucideShare2",
2023-06-04 21:12:03 -04:00
] }
2023-10-29 22:06:20 -04:00
log = "0.4"
2025-01-22 23:13:50 -05:00
hex = "0.4"
2023-06-04 21:12:03 -04:00
[target.'cfg(target_arch = "wasm32")'.dependencies]
yew = { version = "0.20", features = [ "csr", "hydration" ] }
wasm-bindgen = "0.2"
wasm-bindgen-futures = "0.4"
web-sys = { version = "0.3", features = [
"Headers",
"Request",
"RequestInit",
"RequestMode",
"Response",
"Window",
2023-10-29 22:06:20 -04:00
"Location",
"History",
2023-06-04 21:12:03 -04:00
] }
2023-10-29 22:06:20 -04:00
gloo-utils = "0.2"
2023-06-04 21:12:03 -04:00
wasm-logger = "0.2"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
yew = { version = "0.20", features = [ "ssr" ] }
tokio = { version = "1", features = ["full"] }
actix-web = { version = "4.3" }
actix-files = { version = "0.6" }
actix-web-httpauth = { version = "0.8" }
clap = { version = "4.5", features = ["derive"] }
2023-06-04 21:12:03 -04:00
url-escape = { version = "0.1.1" }
rand = "0.8"
2025-01-22 23:13:50 -05:00
ring = "0.17"