aboutsummaryrefslogtreecommitdiff
path: root/examples/redis-unstable/deps/fast_float/README.md
diff options
context:
space:
mode:
authorMitja Felicijan <mitja.felicijan@gmail.com>2026-01-21 22:40:55 +0100
committerMitja Felicijan <mitja.felicijan@gmail.com>2026-01-21 22:40:55 +0100
commit5d8dfe892a2ea89f706ee140c3bdcfd89fe03fda (patch)
tree1acdfa5220cd13b7be43a2a01368e80d306473ca /examples/redis-unstable/deps/fast_float/README.md
parentc7ab12bba64d9c20ccd79b132dac475f7bc3923e (diff)
downloadcrep-5d8dfe892a2ea89f706ee140c3bdcfd89fe03fda.tar.gz
Add Redis source code for testing
Diffstat (limited to 'examples/redis-unstable/deps/fast_float/README.md')
-rw-r--r--examples/redis-unstable/deps/fast_float/README.md21
1 files changed, 21 insertions, 0 deletions
diff --git a/examples/redis-unstable/deps/fast_float/README.md b/examples/redis-unstable/deps/fast_float/README.md
new file mode 100644
index 0000000..90462d3
--- /dev/null
+++ b/examples/redis-unstable/deps/fast_float/README.md
@@ -0,0 +1,21 @@
1README for fast_float v6.1.4
2
3----------------------------------------------
4
5We're using the fast_float library[1] in our (compiled-in)
6floating-point fast_float_strtod implementation for faster and more
7portable parsing of 64 decimal strings.
8
9The single file fast_float.h is an amalgamation of the entire library,
10which can be (re)generated with the amalgamate.py script (from the
11fast_float repository) via the command
12
13```
14git clone https://github.com/fastfloat/fast_float
15cd fast_float
16git checkout v6.1.4
17python3 ./script/amalgamate.py --license=MIT \
18 > $REDIS_SRC/deps/fast_float/fast_float.h
19```
20
21[1]: https://github.com/fastfloat/fast_float