41 lines
1.2 KiB
TOML
41 lines
1.2 KiB
TOML
[package]
|
|
name = "frontend"
|
|
version = "0.1.0"
|
|
authors = ["Johannes Heuel <johannes.heuel@rwth-aachen.de>"]
|
|
edition = "2021"
|
|
license = "MIT"
|
|
|
|
[dependencies]
|
|
console_error_panic_hook = "0.1.6"
|
|
wasm-bindgen = "0.2.84"
|
|
wasm-bindgen-futures = "0.4.32"
|
|
gloo-net = "0.2.3"
|
|
gloo-storage = "0.2"
|
|
weblog = "0.3.0"
|
|
web-sys = {version = "0.3.61", features = ["Window", "DataTransfer", "DataTransferItemList", "DataTransferItem", "FileSystemEntry", "FileSystemDirectoryEntry", "FileSystemDirectoryReader", "FileSystemDirectoryReader", "DragEvent"]}
|
|
js-sys = "0.3.61"
|
|
wee_alloc = "0.4.5"
|
|
ybc = { git = "https://github.com/jheuel/ybc", branch = "alpha-v0.4" }
|
|
yew = "0.20"
|
|
yew-router = "0.17"
|
|
yew-hooks = "0.2.0"
|
|
pathfinding = "3.0.13"
|
|
common = { path = "../common" }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
anyhow = "1.0.58"
|
|
yewtil = { version = "0.4.0", features = ["neq"] }
|
|
thiserror = "1"
|
|
lazy_static = "1.4"
|
|
parking_lot = "0.12"
|
|
dotenv = "0.15.0"
|
|
dotenv_codegen = "0.15.0"
|
|
kamadak-exif = "0.5.5"
|
|
image-meta = "0.1.2"
|
|
image = { version = "0.24.5", default-features = false, features = ["gif", "jpeg", "ico", "png", "pnm", "tga", "tiff", "webp", "bmp", "hdr", "dxt", "dds", "farbfeld", "jpeg_rayon"] }
|
|
|
|
[features]
|
|
default = []
|
|
demo-abc = []
|
|
demo-xyz = []
|