• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
2#
3# When uploading crates to the registry Cargo will automatically
4# "normalize" Cargo.toml files for maximal compatibility
5# with all versions of Cargo and also rewrite `path` dependencies
6# to registry (e.g., crates.io) dependencies.
7#
8# If you are reading this file be aware that the original Cargo.toml
9# will likely look very different (and much more reasonable).
10# See Cargo.toml.orig for the original contents.
11
12[package]
13edition = "2021"
14rust-version = "1.63"
15name = "os_pipe"
16version = "1.2.1"
17authors = ["Jack O'Connor"]
18build = false
19autobins = false
20autoexamples = false
21autotests = false
22autobenches = false
23description = "a cross-platform library for opening OS pipes"
24documentation = "https://docs.rs/os_pipe"
25readme = "README.md"
26keywords = [
27    "pipe",
28    "pipe2",
29    "createpipe",
30    "dup",
31]
32license = "MIT"
33repository = "https://github.com/oconnor663/os_pipe.rs"
34
35[lib]
36name = "os_pipe"
37path = "src/lib.rs"
38
39[[bin]]
40name = "cat"
41path = "src/bin/cat.rs"
42
43[[bin]]
44name = "cat_both"
45path = "src/bin/cat_both.rs"
46
47[[bin]]
48name = "swap"
49path = "src/bin/swap.rs"
50
51[features]
52io_safety = []
53
54[target."cfg(not(windows))".dependencies.libc]
55version = "0.2.62"
56
57[target."cfg(windows)".dependencies.windows-sys]
58version = "0.59.0"
59features = [
60    "Win32_Foundation",
61    "Win32_System_Pipes",
62    "Win32_Security",
63]
64