Skip to content

Commit e3e5cd3

Browse files
committed
Bump version_check to 0.9.1.
1 parent 8c34045 commit e3e5cd3

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ quote = "0.6.10"
2424

2525
[build-dependencies]
2626
lalrpop = "0.17.0"
27-
version_check = "0.1.5"
27+
version_check = "0.9.1"
2828

2929
[features]
3030
dodrio = []

macros/build.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ extern crate version_check;
44
fn main() {
55
lalrpop::process_root().unwrap();
66

7-
if version_check::is_nightly().unwrap_or(false) {
7+
if version_check::is_feature_flaggable().unwrap_or(false) {
88
println!("cargo:rustc-cfg=can_join_spans");
99
println!("cargo:rustc-cfg=can_show_location_of_runtime_parse_error");
1010
}

ui/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ path = "main.rs"
1313
compiletest_rs = { version = "0.3", features = ["stable"] }
1414
typed-html = { path = "../typed-html" }
1515
typed-html-macros = { path = "../macros" }
16-
version_check = "0.1.5"
16+
version_check = "0.9.1"

ui/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
fn ui() {
33
extern crate version_check;
44

5-
if !version_check::is_nightly().unwrap_or(false) {
5+
if !version_check::is_feature_flaggable().unwrap_or(false) {
66
return;
77
}
88

0 commit comments

Comments
 (0)