Skip to content

Commit a697c5a

Browse files
committed
fix: rerun build script
1 parent 700693c commit a697c5a

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sass-embedded"
3-
version = "0.5.0"
3+
version = "0.5.1"
44
authors = ["ahabhgk <ahabhgk@gmail.com>"]
55
edition = "2021"
66
resolver = "2"

build.rs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,12 @@ use prost_build::Config;
44

55
fn main() {
66
println!("cargo:rerun-if-changed=build.rs");
7-
87
println!("cargo:rerun-if-changed=ext/sass/sass-embedded.proto");
98
let out_dir = PathBuf::from(env::var("OUT_DIR").unwrap());
109
Config::new()
1110
.out_dir(&out_dir)
1211
.compile_protos(&["ext/sass/sass-embedded.proto"], &["."])
1312
.unwrap();
14-
15-
println!("cargo:rerun-if-changed=rustfmt.toml");
1613
Command::new("rustfmt")
1714
.arg(out_dir.join("sass.embedded_protocol.rs"))
1815
.spawn()

0 commit comments

Comments
 (0)