File tree Expand file tree Collapse file tree 2 files changed +1
-4
lines changed Expand file tree Collapse file tree 2 files changed +1
-4
lines changed Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " sass-embedded"
3
- version = " 0.5.0 "
3
+ version = " 0.5.1 "
4
4
authors = [" ahabhgk <ahabhgk@gmail.com>" ]
5
5
edition = " 2021"
6
6
resolver = " 2"
Original file line number Diff line number Diff line change @@ -4,15 +4,12 @@ use prost_build::Config;
4
4
5
5
fn main ( ) {
6
6
println ! ( "cargo:rerun-if-changed=build.rs" ) ;
7
-
8
7
println ! ( "cargo:rerun-if-changed=ext/sass/sass-embedded.proto" ) ;
9
8
let out_dir = PathBuf :: from ( env:: var ( "OUT_DIR" ) . unwrap ( ) ) ;
10
9
Config :: new ( )
11
10
. out_dir ( & out_dir)
12
11
. compile_protos ( & [ "ext/sass/sass-embedded.proto" ] , & [ "." ] )
13
12
. unwrap ( ) ;
14
-
15
- println ! ( "cargo:rerun-if-changed=rustfmt.toml" ) ;
16
13
Command :: new ( "rustfmt" )
17
14
. arg ( out_dir. join ( "sass.embedded_protocol.rs" ) )
18
15
. spawn ( )
You can’t perform that action at this time.
0 commit comments