File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ quote = "0.6.10"
24
24
25
25
[build-dependencies ]
26
26
lalrpop = " 0.17.0"
27
- version_check = " 0.1.5 "
27
+ version_check = " 0.9.1 "
28
28
29
29
[features ]
30
30
dodrio = []
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ extern crate version_check;
4
4
fn main ( ) {
5
5
lalrpop:: process_root ( ) . unwrap ( ) ;
6
6
7
- if version_check:: is_nightly ( ) . unwrap_or ( false ) {
7
+ if version_check:: is_feature_flaggable ( ) . unwrap_or ( false ) {
8
8
println ! ( "cargo:rustc-cfg=can_join_spans" ) ;
9
9
println ! ( "cargo:rustc-cfg=can_show_location_of_runtime_parse_error" ) ;
10
10
}
Original file line number Diff line number Diff line change @@ -13,4 +13,4 @@ path = "main.rs"
13
13
compiletest_rs = { version = " 0.3" , features = [" stable" ] }
14
14
typed-html = { path = " ../typed-html" }
15
15
typed-html-macros = { path = " ../macros" }
16
- version_check = " 0.1.5 "
16
+ version_check = " 0.9.1 "
Original file line number Diff line number Diff line change 2
2
fn ui ( ) {
3
3
extern crate version_check;
4
4
5
- if !version_check:: is_nightly ( ) . unwrap_or ( false ) {
5
+ if !version_check:: is_feature_flaggable ( ) . unwrap_or ( false ) {
6
6
return ;
7
7
}
8
8
You can’t perform that action at this time.
0 commit comments