Skip to content

Commit

Permalink
Merge pull request #43 from lzutao/misc
Browse files Browse the repository at this point in the history
Misc additions to README and build config
  • Loading branch information
zesterer committed Sep 18, 2020
2 parents 828ddff + 066a03a commit 3f7dced
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
5 changes: 4 additions & 1 deletion Cargo.toml
Expand Up @@ -9,7 +9,10 @@ keywords = ["mpsc", "fifo", "channel", "thread", "fast"]
categories = ["concurrency", "data-structures"]
license = "Apache-2.0/MIT"
readme = "README.md"
exclude = ["misc"]
exclude = [
"/.github",
"/misc",
]

[features]
select = []
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -8,7 +8,7 @@ https://crates.io/crates/flume)
https://docs.rs/flume)
[![License](https://img.shields.io/badge/license-MIT%2FApache--2.0-blue.svg)](
https://github.com/zesterer/flume)
![actions-badge](https://github.com/zesterer/flume/workflows/Rust/badge.svg)
![actions-badge](https://github.com/zesterer/flume/workflows/Rust/badge.svg?branch=master)

```rust
let (tx, rx) = flume::unbounded();
Expand Down
1 change: 1 addition & 0 deletions tests/basic.rs
Expand Up @@ -309,6 +309,7 @@ fn robin() {
}
}

#[cfg_attr(any(target_os = "macos", windows), ignore)] // FIXME #44
#[cfg(feature = "select")]
#[test]
fn select_general() {
Expand Down

0 comments on commit 3f7dced

Please sign in to comment.