We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c2415e4 commit 6a720b7Copy full SHA for 6a720b7
.gitignore
@@ -1,3 +1,4 @@
1
-/target/
2
**/*.rs.bk
+.#*
3
+/target/
4
Cargo.lock
Cargo.toml
@@ -8,4 +8,8 @@ name = "nb"
8
repository = "https://github.com/japaric/nb"
9
version = "0.1.0"
10
11
-[dependencies]
+[features]
12
+unstable = []
13
+
14
+[dev-dependencies]
15
+futures = "0.1.17"
ci/script.sh
@@ -2,6 +2,9 @@ set -euxo pipefail
main() {
cargo check --target $TARGET
5
6
+ cargo check --target $TARGET --features unstable
7
+ cargo test --target $TARGET --features unstable
}
main
0 commit comments