aboutsummaryrefslogtreecommitdiff
path: root/vendor/serde_json/build.rs
diff options
context:
space:
mode:
authorValentin Popov <valentin@popov.link>2024-07-19 15:37:58 +0300
committerValentin Popov <valentin@popov.link>2024-07-19 15:37:58 +0300
commita990de90fe41456a23e58bd087d2f107d321f3a1 (patch)
tree15afc392522a9e85dc3332235e311b7d39352ea9 /vendor/serde_json/build.rs
parent3d48cd3f81164bbfc1a755dc1d4a9a02f98c8ddd (diff)
downloadfparkan-a990de90fe41456a23e58bd087d2f107d321f3a1.tar.xz
fparkan-a990de90fe41456a23e58bd087d2f107d321f3a1.zip
Deleted vendor folder
Diffstat (limited to 'vendor/serde_json/build.rs')
-rw-r--r--vendor/serde_json/build.rs17
1 files changed, 0 insertions, 17 deletions
diff --git a/vendor/serde_json/build.rs b/vendor/serde_json/build.rs
deleted file mode 100644
index dd09e62..0000000
--- a/vendor/serde_json/build.rs
+++ /dev/null
@@ -1,17 +0,0 @@
-use std::env;
-
-fn main() {
- println!("cargo:rerun-if-changed=build.rs");
-
- // Decide ideal limb width for arithmetic in the float parser. Refer to
- // src/lexical/math.rs for where this has an effect.
- let target_arch = env::var("CARGO_CFG_TARGET_ARCH").unwrap();
- match target_arch.as_str() {
- "aarch64" | "mips64" | "powerpc64" | "x86_64" | "loongarch64" => {
- println!("cargo:rustc-cfg=limb_width_64");
- }
- _ => {
- println!("cargo:rustc-cfg=limb_width_32");
- }
- }
-}