removed custom build.rs

This commit is contained in:
WanderingPenwing 2024-07-22 20:36:00 +02:00
parent d3ed74d3b2
commit 1d13e429ff
2 changed files with 3 additions and 3 deletions

View file

@ -2,7 +2,7 @@
name = "calcifer" name = "calcifer"
version = "1.4.0" version = "1.4.0"
edition = "2021" edition = "2021"
build = "build/build.rs" #build = "build/build.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

View file

@ -1,4 +1,4 @@
fn main() { fn main() {
// custom parameter to fix clipboard issue between calcifer and external // custom parameter to fix clipboard issue between calcifer and external
println!("cargo:rustc-cfg=web_sys_unstable_apis"); println!("cargo:rustc-cfg=web_sys_unstable_apis");
} }