Skip to content

Commit e13ea8a

Browse files
committed
Ignore
1 parent 21a0e59 commit e13ea8a

File tree

4 files changed

+18
-6
lines changed

4 files changed

+18
-6
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,4 +41,8 @@ Cargo.lock
4141
# These are backup files generated by rustfmt
4242
**/*.rs.bk
4343

44+
# Others
45+
async-pipe-rs.iws
46+
47+
4448
# End of https://www.gitignore.io/api/rust,macos

Cargo.toml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
[package]
2-
name = "async-pipe-rs"
2+
name = "async-pipe"
33
version = "0.1.0"
44
authors = ["Rousan Ali <[email protected]>"]
55
edition = "2018"
66

7-
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
8-
97
[dependencies]

README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
1-
# pipe-rs
1+
# async-pipe-rs
22

33
```Rust
4-
pipe<W: AsyncWrite, R: AsyncRead>() -> (W, R)
4+
use async_pipe::pipe;
5+
6+
fn main() {
7+
let (w, r) = pipe();
8+
}
59
```

async-pipe-rs.iws

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,12 @@
44
<cargoProject FILE="$PROJECT_DIR$/Cargo.toml" />
55
</component>
66
<component name="ChangeListManager">
7-
<list default="true" id="a959918d-447f-428b-9672-016ffa660a9d" name="Default Changelist" comment="" />
7+
<list default="true" id="a959918d-447f-428b-9672-016ffa660a9d" name="Default Changelist" comment="">
8+
<change beforePath="$PROJECT_DIR$/.gitignore" beforeDir="false" afterPath="$PROJECT_DIR$/.gitignore" afterDir="false" />
9+
<change beforePath="$PROJECT_DIR$/Cargo.toml" beforeDir="false" afterPath="$PROJECT_DIR$/Cargo.toml" afterDir="false" />
10+
<change beforePath="$PROJECT_DIR$/README.md" beforeDir="false" afterPath="$PROJECT_DIR$/README.md" afterDir="false" />
11+
<change beforePath="$PROJECT_DIR$/async-pipe-rs.iws" beforeDir="false" afterPath="$PROJECT_DIR$/async-pipe-rs.iws" afterDir="false" />
12+
</list>
813
<option name="SHOW_DIALOG" value="false" />
914
<option name="HIGHLIGHT_CONFLICTS" value="true" />
1015
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
@@ -24,6 +29,7 @@
2429
</component>
2530
<component name="PropertiesComponent">
2631
<property name="RunOnceActivity.ShowReadmeOnStart" value="true" />
32+
<property name="org.rust.cargo.project.model.PROJECT_DISCOVERY" value="true" />
2733
<property name="settings.editor.selected.configurable" value="language.rust.rustfmt" />
2834
</component>
2935
<component name="RustProjectSettings">

0 commit comments

Comments
 (0)