-
-
Notifications
You must be signed in to change notification settings - Fork 259
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (25 loc) · 917 Bytes
/
Cargo.toml
File metadata and controls
30 lines (25 loc) · 917 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
[package]
name = "file-id"
version = "0.2.2"
description = "Utility for reading inode numbers (Linux, MacOS) and file IDs (Windows)"
documentation = "https://docs.rs/notify"
readme = "README.md"
license = "MIT OR Apache-2.0"
keywords = ["filesystem", "inode", "file", "index"]
categories = ["filesystem"]
authors = ["Daniel Faust <hessijames@gmail.com>"]
rust-version.workspace = true
edition.workspace = true
homepage.workspace = true
repository.workspace = true
[[bin]]
name = "file-id"
path = "bin/file_id.rs"
[dependencies]
serde = { workspace = true, optional = true }
[target.'cfg(windows)'.dependencies]
windows-sys = { workspace = true, features = ["Win32_Storage_FileSystem", "Win32_Foundation"] }
[target.'cfg(not(target_family = "wasm"))'.dev-dependencies]
tempfile = { workspace = true }
[target.'cfg(target_family = "wasm")'.dev-dependencies]
tempfile = { workspace = true, features = ["nightly"] }