-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (31 loc) · 929 Bytes
/
Copy pathCargo.toml
File metadata and controls
35 lines (31 loc) · 929 Bytes
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
28
29
30
31
32
33
34
35
[package]
name = "microsoft-webui-dev-server"
version.workspace = true
edition.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
homepage.workspace = true
description = "Shared dev-server primitives for WebUI tooling: file watcher, SSE live reload, and URL-safe static file routing."
readme = "README.md"
[lib]
name = "webui_dev_server"
path = "src/lib.rs"
[dependencies]
actix-web = { workspace = true }
tokio = { workspace = true }
notify = { workspace = true }
notify-debouncer-mini = { workspace = true }
percent-encoding = { workspace = true }
futures-util = { workspace = true }
async-stream = { workspace = true }
mime_guess = { workspace = true }
anyhow = { workspace = true }
console = { workspace = true }
time = { workspace = true }
[dev-dependencies]
criterion = { workspace = true }
tempfile = { workspace = true }
[[bench]]
name = "watch_hash_bench"
harness = false