summaryrefslogtreecommitdiffstats
path: root/third_party/rust/serde_json/src/lexical/large_powers.rs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--third_party/rust/serde_json/src/lexical/large_powers.rs9
1 files changed, 9 insertions, 0 deletions
diff --git a/third_party/rust/serde_json/src/lexical/large_powers.rs b/third_party/rust/serde_json/src/lexical/large_powers.rs
new file mode 100644
index 0000000000..c63ce1cf21
--- /dev/null
+++ b/third_party/rust/serde_json/src/lexical/large_powers.rs
@@ -0,0 +1,9 @@
+// Adapted from https://github.com/Alexhuszagh/rust-lexical.
+
+//! Precalculated large powers for limbs.
+
+#[cfg(limb_width_32)]
+pub(crate) use super::large_powers32::*;
+
+#[cfg(limb_width_64)]
+pub(crate) use super::large_powers64::*;