-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (30 loc) · 1.06 KB
/
Cargo.toml
File metadata and controls
41 lines (30 loc) · 1.06 KB
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
36
37
38
39
[package]
name = "ntfs-explorer-gui"
version = "0.1.0"
edition = "2024"
[features]
default = ["desktop"]
desktop = ["dioxus/desktop", "dep:rfd"]
liveview = ["dioxus/liveview", "dep:dioxus-liveview"]
web = ["dioxus/web"]
[dependencies]
dioxus = { version = "0.7.0" }
dioxus-liveview = { version = "0.7.2", optional = true, features = ["axum"] }
# Native file dialogs (desktop only)
rfd = { version = "0.16.0", optional = true }
# Background work / async
tokio = { version = "1", features = ["rt-multi-thread", "macros"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# Snapshot reader
ntfs = { path = "../ntfs" }
mft = { path = "../.." }
# Distributed slice for stylesheet registration
linkme = "0.3"
# Human-readable sizes / dates
jiff = { version = "0.2.16", default-features = false, features = ["std", "alloc", "tz-system", "tz-fat", "tzdb-zoneinfo", "tzdb-concatenated", "tzdb-bundle-platform", "perf-inline"] }
bytesize = "2"
# Settings persistence
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tempfile = "3.23"