-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (30 loc) · 730 Bytes
/
Cargo.toml
File metadata and controls
37 lines (30 loc) · 730 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
36
37
[package]
authors = []
edition = "2021"
name = "hyper_fs"
version = "0.1.0"
[lib]
crate-type = ["cdylib"]
[dependencies]
chrono = { version = "0.4", features = ["clock"] }
ignore = "0.4.25"
jwalk = "0.8.1"
napi = { version = "3.0.0", features = ["chrono_date"] }
napi-derive = "3.4"
rayon = "1.11.0"
remove_dir_all = "1.0.0"
serde = "1.0.228"
walkdir = "2.5.0"
[target.'cfg(unix)'.dependencies]
libc = "0.2"
[target.'cfg(windows)'.dependencies]
windows-sys = { version = "0.59.0", features = [
"Win32_Foundation",
"Win32_Security",
"Win32_Storage_FileSystem",
] }
[build-dependencies]
napi-build = "2"
[profile.release]
lto = true
strip = "symbols"