1[package]
2name = "filetime"
3authors = ["Alex Crichton <alex@alexcrichton.com>"]
4version = "0.2.23"
5license = "MIT/Apache-2.0"
6readme = "README.md"
7keywords = ["timestamp", "mtime"]
8repository = "https://github.com/alexcrichton/filetime"
9homepage = "https://github.com/alexcrichton/filetime"
10documentation = "https://docs.rs/filetime"
11description = """
12Platform-agnostic accessors of timestamps in File metadata
13"""
14edition = "2018"
15
16[dependencies]
17cfg-if = "1.0.0"
18
19[target.'cfg(unix)'.dependencies]
20libc = "0.2.27"
21
22[target.'cfg(windows)'.dependencies.windows-sys]
23version = "0.52.0"
24features = [
25 "Win32_Foundation",
26 "Win32_Storage_FileSystem"
27]
28
29[target.'cfg(target_os = "redox")'.dependencies]
30redox_syscall = "0.4.1"
31
32[dev-dependencies]
33tempfile = "3"
34