File: Cargo.toml.orig

package info (click to toggle)
rust-atomicwrites 0.4.4-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 120 kB
  • sloc: makefile: 4
file content (28 lines) | stat: -rw-r--r-- 723 bytes parent folder | download
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
[package]
name = "atomicwrites"
version = "0.4.4"

authors = ["Markus Unterwaditzer <markus-honeypot@unterwaditzer.net>"]
license = "MIT"
keywords = ["filesystem", "posix"]
readme = "README.md"

description = "Atomic file-writes."
documentation = "https://docs.rs/crate/atomicwrites"
homepage = "https://github.com/untitaker/rust-atomicwrites"
repository = "https://github.com/untitaker/rust-atomicwrites"

exclude = ["/.travis.yml", "/Makefile", "/appveyor.yml"]

[dependencies]
tempfile = "3.1"

[target.'cfg(unix)'.dependencies]
rustix = { version = "0.38.0", features = ["fs"] }

[target.'cfg(windows)'.dependencies.windows-sys]
version = "0.52.0"
features = [
    "Win32_Foundation",
    "Win32_Storage_FileSystem",
]