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