Skip to content

Commit

Permalink
Make memchr not optional
Browse files Browse the repository at this point in the history
  • Loading branch information
bbqsrc committed Oct 10, 2020
1 parent de9c73a commit ee602c0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bare-io"
version = "0.1.0"
version = "0.1.1"
authors = ["Brendan Molloy <brendan@bbqsrc.net>"]
description = "The bare essentials of std::io for use in no_std. No alloc!"
license = "Apache-2.0 OR MIT"
Expand All @@ -9,8 +9,8 @@ repository = "https://github.com/bbqsrc/bare-io"
categories = ["no-std"]

[dependencies]
memchr = { version = "2", default-features = false, optional = true }
memchr = { version = "2", default-features = false }

[features]
default = ["memchr"]
default = []
std = []

0 comments on commit ee602c0

Please sign in to comment.