diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..eea36b461d7d22d850c486185752372d31c0c220 --- /dev/null +++ b/.gitignore @@ -0,0 +1,83 @@ +# for c project +# Prerequisites +*.d + +# Object files +*.o +*.ko +*.obj +*.elf + +# Linker output +*.ilk +*.map +*.exp + +# Precompiled Headers +*.gch +*.pch + +# Libraries +*.lib +*.a +*.la +*.lo + +# Shared objects (inc. Windows DLLs) +*.dll +*.so +*.so.* +*.dylib + +# Executables +*.exe +*.out +*.app +*.i*86 +*.x86_64 +*.hex + +# Debug files +*.dSYM/ +*.su +*.idb +*.pdb + +# Kernel Module Compile Results +*.mod* +*.cmd +.tmp_versions/ +modules.order +Module.symvers +Mkfile.old +dkms.conf + +# for rust project +# Generated by Cargo +# will have compiled files and executables +debug/ +target/ + +# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries +# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html +Cargo.lock + +# These are backup files generated by rustfmt +**/*.rs.bk + +# MSVC Windows builds of rustc generate these, which store debugging information +*.pdb + +# for vscode +.vscode/* +!.vscode/settings.json +!.vscode/tasks.json +!.vscode/launch.json +!.vscode/extensions.json +!.vscode/*.code-snippets + +# Local History for Visual Studio Code +.history/ + +# Built Visual Studio Code Extensions +*.vsix \ No newline at end of file diff --git a/re2-rust/CHANGES b/CHANGES similarity index 100% rename from re2-rust/CHANGES rename to CHANGES diff --git a/re2-rust/CMake/CMakeConfigurableFile.in b/CMake/CMakeConfigurableFile.in similarity index 100% rename from re2-rust/CMake/CMakeConfigurableFile.in rename to CMake/CMakeConfigurableFile.in diff --git a/re2-rust/CMake/CurlSymbolHiding.cmake b/CMake/CurlSymbolHiding.cmake similarity index 100% rename from re2-rust/CMake/CurlSymbolHiding.cmake rename to CMake/CurlSymbolHiding.cmake diff --git a/re2-rust/CMake/CurlTests.c b/CMake/CurlTests.c similarity index 100% rename from re2-rust/CMake/CurlTests.c rename to CMake/CurlTests.c diff --git a/re2-rust/CMake/FindBearSSL.cmake b/CMake/FindBearSSL.cmake similarity index 100% rename from re2-rust/CMake/FindBearSSL.cmake rename to CMake/FindBearSSL.cmake diff --git a/re2-rust/CMake/FindBrotli.cmake b/CMake/FindBrotli.cmake similarity index 100% rename from re2-rust/CMake/FindBrotli.cmake rename to CMake/FindBrotli.cmake diff --git a/re2-rust/CMake/FindCARES.cmake b/CMake/FindCARES.cmake similarity index 100% rename from re2-rust/CMake/FindCARES.cmake rename to CMake/FindCARES.cmake diff --git a/re2-rust/CMake/FindGSS.cmake b/CMake/FindGSS.cmake similarity index 100% rename from re2-rust/CMake/FindGSS.cmake rename to CMake/FindGSS.cmake diff --git a/re2-rust/CMake/FindLibSSH2.cmake b/CMake/FindLibSSH2.cmake similarity index 100% rename from re2-rust/CMake/FindLibSSH2.cmake rename to CMake/FindLibSSH2.cmake diff --git a/re2-rust/CMake/FindMbedTLS.cmake b/CMake/FindMbedTLS.cmake similarity index 100% rename from re2-rust/CMake/FindMbedTLS.cmake rename to CMake/FindMbedTLS.cmake diff --git a/re2-rust/CMake/FindNGHTTP2.cmake b/CMake/FindNGHTTP2.cmake similarity index 100% rename from re2-rust/CMake/FindNGHTTP2.cmake rename to CMake/FindNGHTTP2.cmake diff --git a/re2-rust/CMake/FindNGHTTP3.cmake b/CMake/FindNGHTTP3.cmake similarity index 100% rename from re2-rust/CMake/FindNGHTTP3.cmake rename to CMake/FindNGHTTP3.cmake diff --git a/re2-rust/CMake/FindNGTCP2.cmake b/CMake/FindNGTCP2.cmake similarity index 100% rename from re2-rust/CMake/FindNGTCP2.cmake rename to CMake/FindNGTCP2.cmake diff --git a/re2-rust/CMake/FindNSS.cmake b/CMake/FindNSS.cmake similarity index 100% rename from re2-rust/CMake/FindNSS.cmake rename to CMake/FindNSS.cmake diff --git a/re2-rust/CMake/FindQUICHE.cmake b/CMake/FindQUICHE.cmake similarity index 100% rename from re2-rust/CMake/FindQUICHE.cmake rename to CMake/FindQUICHE.cmake diff --git a/re2-rust/CMake/FindWolfSSL.cmake b/CMake/FindWolfSSL.cmake similarity index 100% rename from re2-rust/CMake/FindWolfSSL.cmake rename to CMake/FindWolfSSL.cmake diff --git a/re2-rust/CMake/FindZstd.cmake b/CMake/FindZstd.cmake similarity index 100% rename from re2-rust/CMake/FindZstd.cmake rename to CMake/FindZstd.cmake diff --git a/re2-rust/CMake/Macros.cmake b/CMake/Macros.cmake similarity index 100% rename from re2-rust/CMake/Macros.cmake rename to CMake/Macros.cmake diff --git a/re2-rust/CMake/OtherTests.cmake b/CMake/OtherTests.cmake similarity index 100% rename from re2-rust/CMake/OtherTests.cmake rename to CMake/OtherTests.cmake diff --git a/re2-rust/CMake/Platforms/WindowsCache.cmake b/CMake/Platforms/WindowsCache.cmake similarity index 100% rename from re2-rust/CMake/Platforms/WindowsCache.cmake rename to CMake/Platforms/WindowsCache.cmake diff --git a/re2-rust/CMake/Utilities.cmake b/CMake/Utilities.cmake similarity index 100% rename from re2-rust/CMake/Utilities.cmake rename to CMake/Utilities.cmake diff --git a/re2-rust/CMake/cmake_uninstall.cmake.in b/CMake/cmake_uninstall.cmake.in similarity index 100% rename from re2-rust/CMake/cmake_uninstall.cmake.in rename to CMake/cmake_uninstall.cmake.in diff --git a/re2-rust/CMake/curl-config.cmake.in b/CMake/curl-config.cmake.in similarity index 100% rename from re2-rust/CMake/curl-config.cmake.in rename to CMake/curl-config.cmake.in diff --git a/re2-rust/CMakeLists.txt b/CMakeLists.txt similarity index 100% rename from re2-rust/CMakeLists.txt rename to CMakeLists.txt diff --git a/re2-rust/COPYING b/COPYING similarity index 100% rename from re2-rust/COPYING rename to COPYING diff --git a/re2-rust/MacOSX-Framework b/MacOSX-Framework similarity index 100% rename from re2-rust/MacOSX-Framework rename to MacOSX-Framework diff --git a/re2-rust/Makefile b/Makefile similarity index 100% rename from re2-rust/Makefile rename to Makefile diff --git a/re2-rust/Makefile.am b/Makefile.am similarity index 100% rename from re2-rust/Makefile.am rename to Makefile.am diff --git a/re2-rust/Makefile.in b/Makefile.in similarity index 100% rename from re2-rust/Makefile.in rename to Makefile.in diff --git a/re2-rust/README b/README-C similarity index 100% rename from re2-rust/README rename to README-C diff --git a/re2-rust/RELEASE-NOTES b/RELEASE-NOTES similarity index 100% rename from re2-rust/RELEASE-NOTES rename to RELEASE-NOTES diff --git a/re2-rust/acinclude.m4 b/acinclude.m4 similarity index 100% rename from re2-rust/acinclude.m4 rename to acinclude.m4 diff --git a/re2-rust/aclocal.m4 b/aclocal.m4 similarity index 100% rename from re2-rust/aclocal.m4 rename to aclocal.m4 diff --git a/re2-rust/buildconf b/buildconf similarity index 100% rename from re2-rust/buildconf rename to buildconf diff --git a/re2-rust/buildconf.bat b/buildconf.bat similarity index 100% rename from re2-rust/buildconf.bat rename to buildconf.bat diff --git a/re2-rust/compile b/compile similarity index 100% rename from re2-rust/compile rename to compile diff --git a/re2-rust/config.guess b/config.guess similarity index 100% rename from re2-rust/config.guess rename to config.guess diff --git a/re2-rust/config.sub b/config.sub similarity index 100% rename from re2-rust/config.sub rename to config.sub diff --git a/re2-rust/configure b/configure similarity index 100% rename from re2-rust/configure rename to configure diff --git a/re2-rust/configure.ac b/configure.ac similarity index 100% rename from re2-rust/configure.ac rename to configure.ac diff --git a/re2-rust/curl-config.in b/curl-config.in similarity index 100% rename from re2-rust/curl-config.in rename to curl-config.in diff --git a/re2-rust/depcomp b/depcomp similarity index 100% rename from re2-rust/depcomp rename to depcomp diff --git a/re2-rust/docs/ALTSVC.md b/docs/ALTSVC.md similarity index 100% rename from re2-rust/docs/ALTSVC.md rename to docs/ALTSVC.md diff --git a/re2-rust/docs/BINDINGS.md b/docs/BINDINGS.md similarity index 100% rename from re2-rust/docs/BINDINGS.md rename to docs/BINDINGS.md diff --git a/re2-rust/docs/BUFREF.md b/docs/BUFREF.md similarity index 100% rename from re2-rust/docs/BUFREF.md rename to docs/BUFREF.md diff --git a/re2-rust/docs/BUG-BOUNTY.md b/docs/BUG-BOUNTY.md similarity index 100% rename from re2-rust/docs/BUG-BOUNTY.md rename to docs/BUG-BOUNTY.md diff --git a/re2-rust/docs/BUGS.md b/docs/BUGS.md similarity index 100% rename from re2-rust/docs/BUGS.md rename to docs/BUGS.md diff --git a/re2-rust/docs/CHECKSRC.md b/docs/CHECKSRC.md similarity index 100% rename from re2-rust/docs/CHECKSRC.md rename to docs/CHECKSRC.md diff --git a/re2-rust/docs/CIPHERS.md b/docs/CIPHERS.md similarity index 100% rename from re2-rust/docs/CIPHERS.md rename to docs/CIPHERS.md diff --git a/re2-rust/docs/CMakeLists.txt b/docs/CMakeLists.txt similarity index 100% rename from re2-rust/docs/CMakeLists.txt rename to docs/CMakeLists.txt diff --git a/re2-rust/docs/CODE_OF_CONDUCT.md b/docs/CODE_OF_CONDUCT.md similarity index 100% rename from re2-rust/docs/CODE_OF_CONDUCT.md rename to docs/CODE_OF_CONDUCT.md diff --git a/re2-rust/docs/CODE_REVIEW.md b/docs/CODE_REVIEW.md similarity index 100% rename from re2-rust/docs/CODE_REVIEW.md rename to docs/CODE_REVIEW.md diff --git a/re2-rust/docs/CODE_STYLE.md b/docs/CODE_STYLE.md similarity index 100% rename from re2-rust/docs/CODE_STYLE.md rename to docs/CODE_STYLE.md diff --git a/re2-rust/docs/CONTRIBUTE.md b/docs/CONTRIBUTE.md similarity index 100% rename from re2-rust/docs/CONTRIBUTE.md rename to docs/CONTRIBUTE.md diff --git a/re2-rust/docs/CURL-DISABLE.md b/docs/CURL-DISABLE.md similarity index 100% rename from re2-rust/docs/CURL-DISABLE.md rename to docs/CURL-DISABLE.md diff --git a/re2-rust/docs/DEPRECATE.md b/docs/DEPRECATE.md similarity index 100% rename from re2-rust/docs/DEPRECATE.md rename to docs/DEPRECATE.md diff --git a/re2-rust/docs/DYNBUF.md b/docs/DYNBUF.md similarity index 100% rename from re2-rust/docs/DYNBUF.md rename to docs/DYNBUF.md diff --git a/re2-rust/docs/ECH.md b/docs/ECH.md similarity index 100% rename from re2-rust/docs/ECH.md rename to docs/ECH.md diff --git a/re2-rust/docs/EXPERIMENTAL.md b/docs/EXPERIMENTAL.md similarity index 100% rename from re2-rust/docs/EXPERIMENTAL.md rename to docs/EXPERIMENTAL.md diff --git a/re2-rust/docs/FAQ b/docs/FAQ similarity index 100% rename from re2-rust/docs/FAQ rename to docs/FAQ diff --git a/re2-rust/docs/FEATURES.md b/docs/FEATURES.md similarity index 100% rename from re2-rust/docs/FEATURES.md rename to docs/FEATURES.md diff --git a/re2-rust/docs/GOVERNANCE.md b/docs/GOVERNANCE.md similarity index 100% rename from re2-rust/docs/GOVERNANCE.md rename to docs/GOVERNANCE.md diff --git a/re2-rust/docs/HELP-US.md b/docs/HELP-US.md similarity index 100% rename from re2-rust/docs/HELP-US.md rename to docs/HELP-US.md diff --git a/re2-rust/docs/HISTORY.md b/docs/HISTORY.md similarity index 100% rename from re2-rust/docs/HISTORY.md rename to docs/HISTORY.md diff --git a/re2-rust/docs/HSTS.md b/docs/HSTS.md similarity index 100% rename from re2-rust/docs/HSTS.md rename to docs/HSTS.md diff --git a/re2-rust/docs/HTTP-COOKIES.md b/docs/HTTP-COOKIES.md similarity index 100% rename from re2-rust/docs/HTTP-COOKIES.md rename to docs/HTTP-COOKIES.md diff --git a/re2-rust/docs/HTTP2.md b/docs/HTTP2.md similarity index 100% rename from re2-rust/docs/HTTP2.md rename to docs/HTTP2.md diff --git a/re2-rust/docs/HTTP3.md b/docs/HTTP3.md similarity index 100% rename from re2-rust/docs/HTTP3.md rename to docs/HTTP3.md diff --git a/re2-rust/docs/HYPER.md b/docs/HYPER.md similarity index 100% rename from re2-rust/docs/HYPER.md rename to docs/HYPER.md diff --git a/re2-rust/docs/INSTALL b/docs/INSTALL similarity index 100% rename from re2-rust/docs/INSTALL rename to docs/INSTALL diff --git a/re2-rust/docs/INSTALL.cmake b/docs/INSTALL.cmake similarity index 100% rename from re2-rust/docs/INSTALL.cmake rename to docs/INSTALL.cmake diff --git a/re2-rust/docs/INSTALL.md b/docs/INSTALL.md similarity index 100% rename from re2-rust/docs/INSTALL.md rename to docs/INSTALL.md diff --git a/re2-rust/docs/INTERNALS.md b/docs/INTERNALS.md similarity index 100% rename from re2-rust/docs/INTERNALS.md rename to docs/INTERNALS.md diff --git a/re2-rust/docs/KNOWN_BUGS b/docs/KNOWN_BUGS similarity index 100% rename from re2-rust/docs/KNOWN_BUGS rename to docs/KNOWN_BUGS diff --git a/re2-rust/docs/MAIL-ETIQUETTE b/docs/MAIL-ETIQUETTE similarity index 100% rename from re2-rust/docs/MAIL-ETIQUETTE rename to docs/MAIL-ETIQUETTE diff --git a/re2-rust/docs/MQTT.md b/docs/MQTT.md similarity index 100% rename from re2-rust/docs/MQTT.md rename to docs/MQTT.md diff --git a/re2-rust/docs/Makefile.am b/docs/Makefile.am similarity index 100% rename from re2-rust/docs/Makefile.am rename to docs/Makefile.am diff --git a/re2-rust/docs/Makefile.in b/docs/Makefile.in similarity index 100% rename from re2-rust/docs/Makefile.in rename to docs/Makefile.in diff --git a/re2-rust/docs/NEW-PROTOCOL.md b/docs/NEW-PROTOCOL.md similarity index 100% rename from re2-rust/docs/NEW-PROTOCOL.md rename to docs/NEW-PROTOCOL.md diff --git a/re2-rust/docs/PARALLEL-TRANSFERS.md b/docs/PARALLEL-TRANSFERS.md similarity index 100% rename from re2-rust/docs/PARALLEL-TRANSFERS.md rename to docs/PARALLEL-TRANSFERS.md diff --git a/re2-rust/docs/README.md b/docs/README.md similarity index 100% rename from re2-rust/docs/README.md rename to docs/README.md diff --git a/re2-rust/docs/RELEASE-PROCEDURE.md b/docs/RELEASE-PROCEDURE.md similarity index 100% rename from re2-rust/docs/RELEASE-PROCEDURE.md rename to docs/RELEASE-PROCEDURE.md diff --git a/re2-rust/docs/ROADMAP.md b/docs/ROADMAP.md similarity index 100% rename from re2-rust/docs/ROADMAP.md rename to docs/ROADMAP.md diff --git a/re2-rust/docs/RUSTLS.md b/docs/RUSTLS.md similarity index 100% rename from re2-rust/docs/RUSTLS.md rename to docs/RUSTLS.md diff --git a/re2-rust/docs/SECURITY-PROCESS.md b/docs/SECURITY-PROCESS.md similarity index 100% rename from re2-rust/docs/SECURITY-PROCESS.md rename to docs/SECURITY-PROCESS.md diff --git a/re2-rust/docs/SSL-PROBLEMS.md b/docs/SSL-PROBLEMS.md similarity index 100% rename from re2-rust/docs/SSL-PROBLEMS.md rename to docs/SSL-PROBLEMS.md diff --git a/re2-rust/docs/SSLCERTS.md b/docs/SSLCERTS.md similarity index 100% rename from re2-rust/docs/SSLCERTS.md rename to docs/SSLCERTS.md diff --git a/re2-rust/docs/THANKS b/docs/THANKS similarity index 100% rename from re2-rust/docs/THANKS rename to docs/THANKS diff --git a/re2-rust/docs/TODO b/docs/TODO similarity index 100% rename from re2-rust/docs/TODO rename to docs/TODO diff --git a/re2-rust/docs/TheArtOfHttpScripting.md b/docs/TheArtOfHttpScripting.md similarity index 100% rename from re2-rust/docs/TheArtOfHttpScripting.md rename to docs/TheArtOfHttpScripting.md diff --git a/re2-rust/docs/URL-SYNTAX.md b/docs/URL-SYNTAX.md similarity index 100% rename from re2-rust/docs/URL-SYNTAX.md rename to docs/URL-SYNTAX.md diff --git a/re2-rust/docs/VERSIONS.md b/docs/VERSIONS.md similarity index 100% rename from re2-rust/docs/VERSIONS.md rename to docs/VERSIONS.md diff --git a/re2-rust/docs/cmdline-opts/CMakeLists.txt b/docs/cmdline-opts/CMakeLists.txt similarity index 100% rename from re2-rust/docs/cmdline-opts/CMakeLists.txt rename to docs/cmdline-opts/CMakeLists.txt diff --git a/re2-rust/docs/cmdline-opts/MANPAGE.md b/docs/cmdline-opts/MANPAGE.md similarity index 100% rename from re2-rust/docs/cmdline-opts/MANPAGE.md rename to docs/cmdline-opts/MANPAGE.md diff --git a/re2-rust/docs/cmdline-opts/Makefile.am b/docs/cmdline-opts/Makefile.am similarity index 100% rename from re2-rust/docs/cmdline-opts/Makefile.am rename to docs/cmdline-opts/Makefile.am diff --git a/re2-rust/docs/cmdline-opts/Makefile.in b/docs/cmdline-opts/Makefile.in similarity index 100% rename from re2-rust/docs/cmdline-opts/Makefile.in rename to docs/cmdline-opts/Makefile.in diff --git a/re2-rust/docs/cmdline-opts/Makefile.inc b/docs/cmdline-opts/Makefile.inc similarity index 100% rename from re2-rust/docs/cmdline-opts/Makefile.inc rename to docs/cmdline-opts/Makefile.inc diff --git a/re2-rust/docs/cmdline-opts/gen.pl b/docs/cmdline-opts/gen.pl similarity index 100% rename from re2-rust/docs/cmdline-opts/gen.pl rename to docs/cmdline-opts/gen.pl diff --git a/re2-rust/docs/cmdline-opts/page-footer b/docs/cmdline-opts/page-footer similarity index 100% rename from re2-rust/docs/cmdline-opts/page-footer rename to docs/cmdline-opts/page-footer diff --git a/re2-rust/docs/cmdline-opts/page-header b/docs/cmdline-opts/page-header similarity index 100% rename from re2-rust/docs/cmdline-opts/page-header rename to docs/cmdline-opts/page-header diff --git a/re2-rust/docs/curl-config.1 b/docs/curl-config.1 similarity index 100% rename from re2-rust/docs/curl-config.1 rename to docs/curl-config.1 diff --git a/re2-rust/docs/curl.1 b/docs/curl.1 similarity index 100% rename from re2-rust/docs/curl.1 rename to docs/curl.1 diff --git a/re2-rust/docs/examples/.checksrc b/docs/examples/.checksrc similarity index 100% rename from re2-rust/docs/examples/.checksrc rename to docs/examples/.checksrc diff --git a/re2-rust/docs/examples/10-at-a-time.c b/docs/examples/10-at-a-time.c similarity index 100% rename from re2-rust/docs/examples/10-at-a-time.c rename to docs/examples/10-at-a-time.c diff --git a/re2-rust/docs/examples/Makefile.am b/docs/examples/Makefile.am similarity index 100% rename from re2-rust/docs/examples/Makefile.am rename to docs/examples/Makefile.am diff --git a/re2-rust/docs/examples/Makefile.example b/docs/examples/Makefile.example similarity index 100% rename from re2-rust/docs/examples/Makefile.example rename to docs/examples/Makefile.example diff --git a/re2-rust/docs/examples/Makefile.in b/docs/examples/Makefile.in similarity index 100% rename from re2-rust/docs/examples/Makefile.in rename to docs/examples/Makefile.in diff --git a/re2-rust/docs/examples/Makefile.inc b/docs/examples/Makefile.inc similarity index 100% rename from re2-rust/docs/examples/Makefile.inc rename to docs/examples/Makefile.inc diff --git a/re2-rust/docs/examples/Makefile.m32 b/docs/examples/Makefile.m32 similarity index 100% rename from re2-rust/docs/examples/Makefile.m32 rename to docs/examples/Makefile.m32 diff --git a/re2-rust/docs/examples/Makefile.netware b/docs/examples/Makefile.netware similarity index 100% rename from re2-rust/docs/examples/Makefile.netware rename to docs/examples/Makefile.netware diff --git a/re2-rust/docs/examples/README.md b/docs/examples/README.md similarity index 100% rename from re2-rust/docs/examples/README.md rename to docs/examples/README.md diff --git a/re2-rust/docs/examples/altsvc.c b/docs/examples/altsvc.c similarity index 100% rename from re2-rust/docs/examples/altsvc.c rename to docs/examples/altsvc.c diff --git a/re2-rust/docs/examples/anyauthput.c b/docs/examples/anyauthput.c similarity index 100% rename from re2-rust/docs/examples/anyauthput.c rename to docs/examples/anyauthput.c diff --git a/re2-rust/docs/examples/cacertinmem.c b/docs/examples/cacertinmem.c similarity index 100% rename from re2-rust/docs/examples/cacertinmem.c rename to docs/examples/cacertinmem.c diff --git a/re2-rust/docs/examples/certinfo.c b/docs/examples/certinfo.c similarity index 100% rename from re2-rust/docs/examples/certinfo.c rename to docs/examples/certinfo.c diff --git a/re2-rust/docs/examples/chkspeed.c b/docs/examples/chkspeed.c similarity index 100% rename from re2-rust/docs/examples/chkspeed.c rename to docs/examples/chkspeed.c diff --git a/re2-rust/docs/examples/cookie_interface.c b/docs/examples/cookie_interface.c similarity index 100% rename from re2-rust/docs/examples/cookie_interface.c rename to docs/examples/cookie_interface.c diff --git a/re2-rust/docs/examples/crawler.c b/docs/examples/crawler.c similarity index 100% rename from re2-rust/docs/examples/crawler.c rename to docs/examples/crawler.c diff --git a/re2-rust/docs/examples/curlgtk.c b/docs/examples/curlgtk.c similarity index 100% rename from re2-rust/docs/examples/curlgtk.c rename to docs/examples/curlgtk.c diff --git a/re2-rust/docs/examples/curlx.c b/docs/examples/curlx.c similarity index 100% rename from re2-rust/docs/examples/curlx.c rename to docs/examples/curlx.c diff --git a/re2-rust/docs/examples/debug.c b/docs/examples/debug.c similarity index 100% rename from re2-rust/docs/examples/debug.c rename to docs/examples/debug.c diff --git a/re2-rust/docs/examples/ephiperfifo.c b/docs/examples/ephiperfifo.c similarity index 100% rename from re2-rust/docs/examples/ephiperfifo.c rename to docs/examples/ephiperfifo.c diff --git a/re2-rust/docs/examples/evhiperfifo.c b/docs/examples/evhiperfifo.c similarity index 100% rename from re2-rust/docs/examples/evhiperfifo.c rename to docs/examples/evhiperfifo.c diff --git a/re2-rust/docs/examples/externalsocket.c b/docs/examples/externalsocket.c similarity index 100% rename from re2-rust/docs/examples/externalsocket.c rename to docs/examples/externalsocket.c diff --git a/re2-rust/docs/examples/fileupload.c b/docs/examples/fileupload.c similarity index 100% rename from re2-rust/docs/examples/fileupload.c rename to docs/examples/fileupload.c diff --git a/re2-rust/docs/examples/fopen.c b/docs/examples/fopen.c similarity index 100% rename from re2-rust/docs/examples/fopen.c rename to docs/examples/fopen.c diff --git a/re2-rust/docs/examples/ftp-wildcard.c b/docs/examples/ftp-wildcard.c similarity index 100% rename from re2-rust/docs/examples/ftp-wildcard.c rename to docs/examples/ftp-wildcard.c diff --git a/re2-rust/docs/examples/ftpget.c b/docs/examples/ftpget.c similarity index 100% rename from re2-rust/docs/examples/ftpget.c rename to docs/examples/ftpget.c diff --git a/re2-rust/docs/examples/ftpgetinfo.c b/docs/examples/ftpgetinfo.c similarity index 100% rename from re2-rust/docs/examples/ftpgetinfo.c rename to docs/examples/ftpgetinfo.c diff --git a/re2-rust/docs/examples/ftpgetresp.c b/docs/examples/ftpgetresp.c similarity index 100% rename from re2-rust/docs/examples/ftpgetresp.c rename to docs/examples/ftpgetresp.c diff --git a/re2-rust/docs/examples/ftpsget.c b/docs/examples/ftpsget.c similarity index 100% rename from re2-rust/docs/examples/ftpsget.c rename to docs/examples/ftpsget.c diff --git a/re2-rust/docs/examples/ftpupload.c b/docs/examples/ftpupload.c similarity index 100% rename from re2-rust/docs/examples/ftpupload.c rename to docs/examples/ftpupload.c diff --git a/re2-rust/docs/examples/ftpuploadfrommem.c b/docs/examples/ftpuploadfrommem.c similarity index 100% rename from re2-rust/docs/examples/ftpuploadfrommem.c rename to docs/examples/ftpuploadfrommem.c diff --git a/re2-rust/docs/examples/ftpuploadresume.c b/docs/examples/ftpuploadresume.c similarity index 100% rename from re2-rust/docs/examples/ftpuploadresume.c rename to docs/examples/ftpuploadresume.c diff --git a/re2-rust/docs/examples/getinfo.c b/docs/examples/getinfo.c similarity index 100% rename from re2-rust/docs/examples/getinfo.c rename to docs/examples/getinfo.c diff --git a/re2-rust/docs/examples/getinmemory.c b/docs/examples/getinmemory.c similarity index 100% rename from re2-rust/docs/examples/getinmemory.c rename to docs/examples/getinmemory.c diff --git a/re2-rust/docs/examples/getredirect.c b/docs/examples/getredirect.c similarity index 100% rename from re2-rust/docs/examples/getredirect.c rename to docs/examples/getredirect.c diff --git a/re2-rust/docs/examples/getreferrer.c b/docs/examples/getreferrer.c similarity index 100% rename from re2-rust/docs/examples/getreferrer.c rename to docs/examples/getreferrer.c diff --git a/re2-rust/docs/examples/ghiper.c b/docs/examples/ghiper.c similarity index 100% rename from re2-rust/docs/examples/ghiper.c rename to docs/examples/ghiper.c diff --git a/re2-rust/docs/examples/hiperfifo.c b/docs/examples/hiperfifo.c similarity index 100% rename from re2-rust/docs/examples/hiperfifo.c rename to docs/examples/hiperfifo.c diff --git a/re2-rust/docs/examples/href_extractor.c b/docs/examples/href_extractor.c similarity index 100% rename from re2-rust/docs/examples/href_extractor.c rename to docs/examples/href_extractor.c diff --git a/re2-rust/docs/examples/htmltidy.c b/docs/examples/htmltidy.c similarity index 100% rename from re2-rust/docs/examples/htmltidy.c rename to docs/examples/htmltidy.c diff --git a/re2-rust/docs/examples/htmltitle.cpp b/docs/examples/htmltitle.cpp similarity index 100% rename from re2-rust/docs/examples/htmltitle.cpp rename to docs/examples/htmltitle.cpp diff --git a/re2-rust/docs/examples/http-post.c b/docs/examples/http-post.c similarity index 100% rename from re2-rust/docs/examples/http-post.c rename to docs/examples/http-post.c diff --git a/re2-rust/docs/examples/http2-download.c b/docs/examples/http2-download.c similarity index 100% rename from re2-rust/docs/examples/http2-download.c rename to docs/examples/http2-download.c diff --git a/re2-rust/docs/examples/http2-pushinmemory.c b/docs/examples/http2-pushinmemory.c similarity index 100% rename from re2-rust/docs/examples/http2-pushinmemory.c rename to docs/examples/http2-pushinmemory.c diff --git a/re2-rust/docs/examples/http2-serverpush.c b/docs/examples/http2-serverpush.c similarity index 100% rename from re2-rust/docs/examples/http2-serverpush.c rename to docs/examples/http2-serverpush.c diff --git a/re2-rust/docs/examples/http2-upload.c b/docs/examples/http2-upload.c similarity index 100% rename from re2-rust/docs/examples/http2-upload.c rename to docs/examples/http2-upload.c diff --git a/re2-rust/docs/examples/http3-present.c b/docs/examples/http3-present.c similarity index 100% rename from re2-rust/docs/examples/http3-present.c rename to docs/examples/http3-present.c diff --git a/re2-rust/docs/examples/http3.c b/docs/examples/http3.c similarity index 100% rename from re2-rust/docs/examples/http3.c rename to docs/examples/http3.c diff --git a/re2-rust/docs/examples/httpcustomheader.c b/docs/examples/httpcustomheader.c similarity index 100% rename from re2-rust/docs/examples/httpcustomheader.c rename to docs/examples/httpcustomheader.c diff --git a/re2-rust/docs/examples/httpput-postfields.c b/docs/examples/httpput-postfields.c similarity index 100% rename from re2-rust/docs/examples/httpput-postfields.c rename to docs/examples/httpput-postfields.c diff --git a/re2-rust/docs/examples/httpput.c b/docs/examples/httpput.c similarity index 100% rename from re2-rust/docs/examples/httpput.c rename to docs/examples/httpput.c diff --git a/re2-rust/docs/examples/https.c b/docs/examples/https.c similarity index 100% rename from re2-rust/docs/examples/https.c rename to docs/examples/https.c diff --git a/re2-rust/docs/examples/imap-append.c b/docs/examples/imap-append.c similarity index 100% rename from re2-rust/docs/examples/imap-append.c rename to docs/examples/imap-append.c diff --git a/re2-rust/docs/examples/imap-authzid.c b/docs/examples/imap-authzid.c similarity index 100% rename from re2-rust/docs/examples/imap-authzid.c rename to docs/examples/imap-authzid.c diff --git a/re2-rust/docs/examples/imap-copy.c b/docs/examples/imap-copy.c similarity index 100% rename from re2-rust/docs/examples/imap-copy.c rename to docs/examples/imap-copy.c diff --git a/re2-rust/docs/examples/imap-create.c b/docs/examples/imap-create.c similarity index 100% rename from re2-rust/docs/examples/imap-create.c rename to docs/examples/imap-create.c diff --git a/re2-rust/docs/examples/imap-delete.c b/docs/examples/imap-delete.c similarity index 100% rename from re2-rust/docs/examples/imap-delete.c rename to docs/examples/imap-delete.c diff --git a/re2-rust/docs/examples/imap-examine.c b/docs/examples/imap-examine.c similarity index 100% rename from re2-rust/docs/examples/imap-examine.c rename to docs/examples/imap-examine.c diff --git a/re2-rust/docs/examples/imap-fetch.c b/docs/examples/imap-fetch.c similarity index 100% rename from re2-rust/docs/examples/imap-fetch.c rename to docs/examples/imap-fetch.c diff --git a/re2-rust/docs/examples/imap-list.c b/docs/examples/imap-list.c similarity index 100% rename from re2-rust/docs/examples/imap-list.c rename to docs/examples/imap-list.c diff --git a/re2-rust/docs/examples/imap-lsub.c b/docs/examples/imap-lsub.c similarity index 100% rename from re2-rust/docs/examples/imap-lsub.c rename to docs/examples/imap-lsub.c diff --git a/re2-rust/docs/examples/imap-multi.c b/docs/examples/imap-multi.c similarity index 100% rename from re2-rust/docs/examples/imap-multi.c rename to docs/examples/imap-multi.c diff --git a/re2-rust/docs/examples/imap-noop.c b/docs/examples/imap-noop.c similarity index 100% rename from re2-rust/docs/examples/imap-noop.c rename to docs/examples/imap-noop.c diff --git a/re2-rust/docs/examples/imap-search.c b/docs/examples/imap-search.c similarity index 100% rename from re2-rust/docs/examples/imap-search.c rename to docs/examples/imap-search.c diff --git a/re2-rust/docs/examples/imap-ssl.c b/docs/examples/imap-ssl.c similarity index 100% rename from re2-rust/docs/examples/imap-ssl.c rename to docs/examples/imap-ssl.c diff --git a/re2-rust/docs/examples/imap-store.c b/docs/examples/imap-store.c similarity index 100% rename from re2-rust/docs/examples/imap-store.c rename to docs/examples/imap-store.c diff --git a/re2-rust/docs/examples/imap-tls.c b/docs/examples/imap-tls.c similarity index 100% rename from re2-rust/docs/examples/imap-tls.c rename to docs/examples/imap-tls.c diff --git a/re2-rust/docs/examples/makefile.dj b/docs/examples/makefile.dj similarity index 100% rename from re2-rust/docs/examples/makefile.dj rename to docs/examples/makefile.dj diff --git a/re2-rust/docs/examples/multi-app.c b/docs/examples/multi-app.c similarity index 100% rename from re2-rust/docs/examples/multi-app.c rename to docs/examples/multi-app.c diff --git a/re2-rust/docs/examples/multi-debugcallback.c b/docs/examples/multi-debugcallback.c similarity index 100% rename from re2-rust/docs/examples/multi-debugcallback.c rename to docs/examples/multi-debugcallback.c diff --git a/re2-rust/docs/examples/multi-double.c b/docs/examples/multi-double.c similarity index 100% rename from re2-rust/docs/examples/multi-double.c rename to docs/examples/multi-double.c diff --git a/re2-rust/docs/examples/multi-event.c b/docs/examples/multi-event.c similarity index 100% rename from re2-rust/docs/examples/multi-event.c rename to docs/examples/multi-event.c diff --git a/re2-rust/docs/examples/multi-formadd.c b/docs/examples/multi-formadd.c similarity index 100% rename from re2-rust/docs/examples/multi-formadd.c rename to docs/examples/multi-formadd.c diff --git a/re2-rust/docs/examples/multi-legacy.c b/docs/examples/multi-legacy.c similarity index 100% rename from re2-rust/docs/examples/multi-legacy.c rename to docs/examples/multi-legacy.c diff --git a/re2-rust/docs/examples/multi-post.c b/docs/examples/multi-post.c similarity index 100% rename from re2-rust/docs/examples/multi-post.c rename to docs/examples/multi-post.c diff --git a/re2-rust/docs/examples/multi-single.c b/docs/examples/multi-single.c similarity index 100% rename from re2-rust/docs/examples/multi-single.c rename to docs/examples/multi-single.c diff --git a/re2-rust/docs/examples/multi-uv.c b/docs/examples/multi-uv.c similarity index 100% rename from re2-rust/docs/examples/multi-uv.c rename to docs/examples/multi-uv.c diff --git a/re2-rust/docs/examples/multithread.c b/docs/examples/multithread.c similarity index 100% rename from re2-rust/docs/examples/multithread.c rename to docs/examples/multithread.c diff --git a/re2-rust/docs/examples/opensslthreadlock.c b/docs/examples/opensslthreadlock.c similarity index 100% rename from re2-rust/docs/examples/opensslthreadlock.c rename to docs/examples/opensslthreadlock.c diff --git a/re2-rust/docs/examples/parseurl.c b/docs/examples/parseurl.c similarity index 100% rename from re2-rust/docs/examples/parseurl.c rename to docs/examples/parseurl.c diff --git a/re2-rust/docs/examples/persistent.c b/docs/examples/persistent.c similarity index 100% rename from re2-rust/docs/examples/persistent.c rename to docs/examples/persistent.c diff --git a/re2-rust/docs/examples/pop3-authzid.c b/docs/examples/pop3-authzid.c similarity index 100% rename from re2-rust/docs/examples/pop3-authzid.c rename to docs/examples/pop3-authzid.c diff --git a/re2-rust/docs/examples/pop3-dele.c b/docs/examples/pop3-dele.c similarity index 100% rename from re2-rust/docs/examples/pop3-dele.c rename to docs/examples/pop3-dele.c diff --git a/re2-rust/docs/examples/pop3-list.c b/docs/examples/pop3-list.c similarity index 100% rename from re2-rust/docs/examples/pop3-list.c rename to docs/examples/pop3-list.c diff --git a/re2-rust/docs/examples/pop3-multi.c b/docs/examples/pop3-multi.c similarity index 100% rename from re2-rust/docs/examples/pop3-multi.c rename to docs/examples/pop3-multi.c diff --git a/re2-rust/docs/examples/pop3-noop.c b/docs/examples/pop3-noop.c similarity index 100% rename from re2-rust/docs/examples/pop3-noop.c rename to docs/examples/pop3-noop.c diff --git a/re2-rust/docs/examples/pop3-retr.c b/docs/examples/pop3-retr.c similarity index 100% rename from re2-rust/docs/examples/pop3-retr.c rename to docs/examples/pop3-retr.c diff --git a/re2-rust/docs/examples/pop3-ssl.c b/docs/examples/pop3-ssl.c similarity index 100% rename from re2-rust/docs/examples/pop3-ssl.c rename to docs/examples/pop3-ssl.c diff --git a/re2-rust/docs/examples/pop3-stat.c b/docs/examples/pop3-stat.c similarity index 100% rename from re2-rust/docs/examples/pop3-stat.c rename to docs/examples/pop3-stat.c diff --git a/re2-rust/docs/examples/pop3-tls.c b/docs/examples/pop3-tls.c similarity index 100% rename from re2-rust/docs/examples/pop3-tls.c rename to docs/examples/pop3-tls.c diff --git a/re2-rust/docs/examples/pop3-top.c b/docs/examples/pop3-top.c similarity index 100% rename from re2-rust/docs/examples/pop3-top.c rename to docs/examples/pop3-top.c diff --git a/re2-rust/docs/examples/pop3-uidl.c b/docs/examples/pop3-uidl.c similarity index 100% rename from re2-rust/docs/examples/pop3-uidl.c rename to docs/examples/pop3-uidl.c diff --git a/re2-rust/docs/examples/post-callback.c b/docs/examples/post-callback.c similarity index 100% rename from re2-rust/docs/examples/post-callback.c rename to docs/examples/post-callback.c diff --git a/re2-rust/docs/examples/postinmemory.c b/docs/examples/postinmemory.c similarity index 100% rename from re2-rust/docs/examples/postinmemory.c rename to docs/examples/postinmemory.c diff --git a/re2-rust/docs/examples/postit2-formadd.c b/docs/examples/postit2-formadd.c similarity index 100% rename from re2-rust/docs/examples/postit2-formadd.c rename to docs/examples/postit2-formadd.c diff --git a/re2-rust/docs/examples/postit2.c b/docs/examples/postit2.c similarity index 100% rename from re2-rust/docs/examples/postit2.c rename to docs/examples/postit2.c diff --git a/re2-rust/docs/examples/progressfunc.c b/docs/examples/progressfunc.c similarity index 100% rename from re2-rust/docs/examples/progressfunc.c rename to docs/examples/progressfunc.c diff --git a/re2-rust/docs/examples/resolve.c b/docs/examples/resolve.c similarity index 100% rename from re2-rust/docs/examples/resolve.c rename to docs/examples/resolve.c diff --git a/re2-rust/docs/examples/rtsp.c b/docs/examples/rtsp.c similarity index 100% rename from re2-rust/docs/examples/rtsp.c rename to docs/examples/rtsp.c diff --git a/re2-rust/docs/examples/sampleconv.c b/docs/examples/sampleconv.c similarity index 100% rename from re2-rust/docs/examples/sampleconv.c rename to docs/examples/sampleconv.c diff --git a/re2-rust/docs/examples/sendrecv.c b/docs/examples/sendrecv.c similarity index 100% rename from re2-rust/docs/examples/sendrecv.c rename to docs/examples/sendrecv.c diff --git a/re2-rust/docs/examples/sepheaders.c b/docs/examples/sepheaders.c similarity index 100% rename from re2-rust/docs/examples/sepheaders.c rename to docs/examples/sepheaders.c diff --git a/re2-rust/docs/examples/sessioninfo.c b/docs/examples/sessioninfo.c similarity index 100% rename from re2-rust/docs/examples/sessioninfo.c rename to docs/examples/sessioninfo.c diff --git a/re2-rust/docs/examples/sftpget.c b/docs/examples/sftpget.c similarity index 100% rename from re2-rust/docs/examples/sftpget.c rename to docs/examples/sftpget.c diff --git a/re2-rust/docs/examples/sftpuploadresume.c b/docs/examples/sftpuploadresume.c similarity index 100% rename from re2-rust/docs/examples/sftpuploadresume.c rename to docs/examples/sftpuploadresume.c diff --git a/re2-rust/docs/examples/shared-connection-cache.c b/docs/examples/shared-connection-cache.c similarity index 100% rename from re2-rust/docs/examples/shared-connection-cache.c rename to docs/examples/shared-connection-cache.c diff --git a/re2-rust/docs/examples/simple.c b/docs/examples/simple.c similarity index 100% rename from re2-rust/docs/examples/simple.c rename to docs/examples/simple.c diff --git a/re2-rust/docs/examples/simplepost.c b/docs/examples/simplepost.c similarity index 100% rename from re2-rust/docs/examples/simplepost.c rename to docs/examples/simplepost.c diff --git a/re2-rust/docs/examples/simplessl.c b/docs/examples/simplessl.c similarity index 100% rename from re2-rust/docs/examples/simplessl.c rename to docs/examples/simplessl.c diff --git a/re2-rust/docs/examples/smooth-gtk-thread.c b/docs/examples/smooth-gtk-thread.c similarity index 100% rename from re2-rust/docs/examples/smooth-gtk-thread.c rename to docs/examples/smooth-gtk-thread.c diff --git a/re2-rust/docs/examples/smtp-authzid.c b/docs/examples/smtp-authzid.c similarity index 100% rename from re2-rust/docs/examples/smtp-authzid.c rename to docs/examples/smtp-authzid.c diff --git a/re2-rust/docs/examples/smtp-expn.c b/docs/examples/smtp-expn.c similarity index 100% rename from re2-rust/docs/examples/smtp-expn.c rename to docs/examples/smtp-expn.c diff --git a/re2-rust/docs/examples/smtp-mail.c b/docs/examples/smtp-mail.c similarity index 100% rename from re2-rust/docs/examples/smtp-mail.c rename to docs/examples/smtp-mail.c diff --git a/re2-rust/docs/examples/smtp-mime.c b/docs/examples/smtp-mime.c similarity index 100% rename from re2-rust/docs/examples/smtp-mime.c rename to docs/examples/smtp-mime.c diff --git a/re2-rust/docs/examples/smtp-multi.c b/docs/examples/smtp-multi.c similarity index 100% rename from re2-rust/docs/examples/smtp-multi.c rename to docs/examples/smtp-multi.c diff --git a/re2-rust/docs/examples/smtp-ssl.c b/docs/examples/smtp-ssl.c similarity index 100% rename from re2-rust/docs/examples/smtp-ssl.c rename to docs/examples/smtp-ssl.c diff --git a/re2-rust/docs/examples/smtp-tls.c b/docs/examples/smtp-tls.c similarity index 100% rename from re2-rust/docs/examples/smtp-tls.c rename to docs/examples/smtp-tls.c diff --git a/re2-rust/docs/examples/smtp-vrfy.c b/docs/examples/smtp-vrfy.c similarity index 100% rename from re2-rust/docs/examples/smtp-vrfy.c rename to docs/examples/smtp-vrfy.c diff --git a/re2-rust/docs/examples/sslbackend.c b/docs/examples/sslbackend.c similarity index 100% rename from re2-rust/docs/examples/sslbackend.c rename to docs/examples/sslbackend.c diff --git a/re2-rust/docs/examples/synctime.c b/docs/examples/synctime.c similarity index 100% rename from re2-rust/docs/examples/synctime.c rename to docs/examples/synctime.c diff --git a/re2-rust/docs/examples/threaded-ssl.c b/docs/examples/threaded-ssl.c similarity index 100% rename from re2-rust/docs/examples/threaded-ssl.c rename to docs/examples/threaded-ssl.c diff --git a/re2-rust/docs/examples/url2file.c b/docs/examples/url2file.c similarity index 100% rename from re2-rust/docs/examples/url2file.c rename to docs/examples/url2file.c diff --git a/re2-rust/docs/examples/urlapi.c b/docs/examples/urlapi.c similarity index 100% rename from re2-rust/docs/examples/urlapi.c rename to docs/examples/urlapi.c diff --git a/re2-rust/docs/examples/usercertinmem.c b/docs/examples/usercertinmem.c similarity index 100% rename from re2-rust/docs/examples/usercertinmem.c rename to docs/examples/usercertinmem.c diff --git a/re2-rust/docs/examples/version-check.pl b/docs/examples/version-check.pl similarity index 100% rename from re2-rust/docs/examples/version-check.pl rename to docs/examples/version-check.pl diff --git a/re2-rust/docs/examples/xmlstream.c b/docs/examples/xmlstream.c similarity index 100% rename from re2-rust/docs/examples/xmlstream.c rename to docs/examples/xmlstream.c diff --git a/re2-rust/docs/libcurl/ABI.md b/docs/libcurl/ABI.md similarity index 100% rename from re2-rust/docs/libcurl/ABI.md rename to docs/libcurl/ABI.md diff --git a/re2-rust/docs/libcurl/CMakeLists.txt b/docs/libcurl/CMakeLists.txt similarity index 100% rename from re2-rust/docs/libcurl/CMakeLists.txt rename to docs/libcurl/CMakeLists.txt diff --git a/re2-rust/docs/libcurl/Makefile.am b/docs/libcurl/Makefile.am similarity index 100% rename from re2-rust/docs/libcurl/Makefile.am rename to docs/libcurl/Makefile.am diff --git a/re2-rust/docs/libcurl/Makefile.in b/docs/libcurl/Makefile.in similarity index 100% rename from re2-rust/docs/libcurl/Makefile.in rename to docs/libcurl/Makefile.in diff --git a/re2-rust/docs/libcurl/Makefile.inc b/docs/libcurl/Makefile.inc similarity index 100% rename from re2-rust/docs/libcurl/Makefile.inc rename to docs/libcurl/Makefile.inc diff --git a/re2-rust/docs/libcurl/curl_easy_cleanup.3 b/docs/libcurl/curl_easy_cleanup.3 similarity index 100% rename from re2-rust/docs/libcurl/curl_easy_cleanup.3 rename to docs/libcurl/curl_easy_cleanup.3 diff --git a/re2-rust/docs/libcurl/curl_easy_duphandle.3 b/docs/libcurl/curl_easy_duphandle.3 similarity index 100% rename from re2-rust/docs/libcurl/curl_easy_duphandle.3 rename to docs/libcurl/curl_easy_duphandle.3 diff --git a/re2-rust/docs/libcurl/curl_easy_escape.3 b/docs/libcurl/curl_easy_escape.3 similarity index 100% rename from re2-rust/docs/libcurl/curl_easy_escape.3 rename to docs/libcurl/curl_easy_escape.3 diff --git a/re2-rust/docs/libcurl/curl_easy_getinfo.3 b/docs/libcurl/curl_easy_getinfo.3 similarity index 100% rename from re2-rust/docs/libcurl/curl_easy_getinfo.3 rename to docs/libcurl/curl_easy_getinfo.3 diff --git a/re2-rust/docs/libcurl/curl_easy_init.3 b/docs/libcurl/curl_easy_init.3 similarity index 100% rename from re2-rust/docs/libcurl/curl_easy_init.3 rename to docs/libcurl/curl_easy_init.3 diff --git a/re2-rust/docs/libcurl/curl_easy_option_by_id.3 b/docs/libcurl/curl_easy_option_by_id.3 similarity index 100% rename from re2-rust/docs/libcurl/curl_easy_option_by_id.3 rename to docs/libcurl/curl_easy_option_by_id.3 diff --git a/re2-rust/docs/libcurl/curl_easy_option_by_name.3 b/docs/libcurl/curl_easy_option_by_name.3 similarity index 100% rename from re2-rust/docs/libcurl/curl_easy_option_by_name.3 rename to docs/libcurl/curl_easy_option_by_name.3 diff --git a/re2-rust/docs/libcurl/curl_easy_option_next.3 b/docs/libcurl/curl_easy_option_next.3 similarity index 100% rename from re2-rust/docs/libcurl/curl_easy_option_next.3 rename to docs/libcurl/curl_easy_option_next.3 diff --git a/re2-rust/docs/libcurl/curl_easy_pause.3 b/docs/libcurl/curl_easy_pause.3 similarity index 100% rename from re2-rust/docs/libcurl/curl_easy_pause.3 rename to docs/libcurl/curl_easy_pause.3 diff --git a/re2-rust/docs/libcurl/curl_easy_perform.3 b/docs/libcurl/curl_easy_perform.3 similarity index 100% rename from re2-rust/docs/libcurl/curl_easy_perform.3 rename to docs/libcurl/curl_easy_perform.3 diff --git a/re2-rust/docs/libcurl/curl_easy_recv.3 b/docs/libcurl/curl_easy_recv.3 similarity index 100% rename from re2-rust/docs/libcurl/curl_easy_recv.3 rename to docs/libcurl/curl_easy_recv.3 diff --git a/re2-rust/docs/libcurl/curl_easy_reset.3 b/docs/libcurl/curl_easy_reset.3 similarity index 100% rename from re2-rust/docs/libcurl/curl_easy_reset.3 rename to docs/libcurl/curl_easy_reset.3 diff --git a/re2-rust/docs/libcurl/curl_easy_send.3 b/docs/libcurl/curl_easy_send.3 similarity index 100% rename from re2-rust/docs/libcurl/curl_easy_send.3 rename to docs/libcurl/curl_easy_send.3 diff --git a/re2-rust/docs/libcurl/curl_easy_setopt.3 b/docs/libcurl/curl_easy_setopt.3 similarity index 100% rename from re2-rust/docs/libcurl/curl_easy_setopt.3 rename to docs/libcurl/curl_easy_setopt.3 diff --git a/re2-rust/docs/libcurl/curl_easy_strerror.3 b/docs/libcurl/curl_easy_strerror.3 similarity index 100% rename from re2-rust/docs/libcurl/curl_easy_strerror.3 rename to docs/libcurl/curl_easy_strerror.3 diff --git a/re2-rust/docs/libcurl/curl_easy_unescape.3 b/docs/libcurl/curl_easy_unescape.3 similarity index 100% rename from re2-rust/docs/libcurl/curl_easy_unescape.3 rename to docs/libcurl/curl_easy_unescape.3 diff --git a/re2-rust/docs/libcurl/curl_easy_upkeep.3 b/docs/libcurl/curl_easy_upkeep.3 similarity index 100% rename from re2-rust/docs/libcurl/curl_easy_upkeep.3 rename to docs/libcurl/curl_easy_upkeep.3 diff --git a/re2-rust/docs/libcurl/curl_escape.3 b/docs/libcurl/curl_escape.3 similarity index 100% rename from re2-rust/docs/libcurl/curl_escape.3 rename to docs/libcurl/curl_escape.3 diff --git a/re2-rust/docs/libcurl/curl_formadd.3 b/docs/libcurl/curl_formadd.3 similarity index 100% rename from re2-rust/docs/libcurl/curl_formadd.3 rename to docs/libcurl/curl_formadd.3 diff --git a/re2-rust/docs/libcurl/curl_formfree.3 b/docs/libcurl/curl_formfree.3 similarity index 100% rename from re2-rust/docs/libcurl/curl_formfree.3 rename to docs/libcurl/curl_formfree.3 diff --git a/re2-rust/docs/libcurl/curl_formget.3 b/docs/libcurl/curl_formget.3 similarity index 100% rename from re2-rust/docs/libcurl/curl_formget.3 rename to docs/libcurl/curl_formget.3 diff --git a/re2-rust/docs/libcurl/curl_free.3 b/docs/libcurl/curl_free.3 similarity index 100% rename from re2-rust/docs/libcurl/curl_free.3 rename to docs/libcurl/curl_free.3 diff --git a/re2-rust/docs/libcurl/curl_getdate.3 b/docs/libcurl/curl_getdate.3 similarity index 100% rename from re2-rust/docs/libcurl/curl_getdate.3 rename to docs/libcurl/curl_getdate.3 diff --git a/re2-rust/docs/libcurl/curl_getenv.3 b/docs/libcurl/curl_getenv.3 similarity index 100% rename from re2-rust/docs/libcurl/curl_getenv.3 rename to docs/libcurl/curl_getenv.3 diff --git a/re2-rust/docs/libcurl/curl_global_cleanup.3 b/docs/libcurl/curl_global_cleanup.3 similarity index 100% rename from re2-rust/docs/libcurl/curl_global_cleanup.3 rename to docs/libcurl/curl_global_cleanup.3 diff --git a/re2-rust/docs/libcurl/curl_global_init.3 b/docs/libcurl/curl_global_init.3 similarity index 100% rename from re2-rust/docs/libcurl/curl_global_init.3 rename to docs/libcurl/curl_global_init.3 diff --git a/re2-rust/docs/libcurl/curl_global_init_mem.3 b/docs/libcurl/curl_global_init_mem.3 similarity index 100% rename from re2-rust/docs/libcurl/curl_global_init_mem.3 rename to docs/libcurl/curl_global_init_mem.3 diff --git a/re2-rust/docs/libcurl/curl_global_sslset.3 b/docs/libcurl/curl_global_sslset.3 similarity index 100% rename from re2-rust/docs/libcurl/curl_global_sslset.3 rename to docs/libcurl/curl_global_sslset.3 diff --git a/re2-rust/docs/libcurl/curl_mime_addpart.3 b/docs/libcurl/curl_mime_addpart.3 similarity index 100% rename from re2-rust/docs/libcurl/curl_mime_addpart.3 rename to docs/libcurl/curl_mime_addpart.3 diff --git a/re2-rust/docs/libcurl/curl_mime_data.3 b/docs/libcurl/curl_mime_data.3 similarity index 100% rename from re2-rust/docs/libcurl/curl_mime_data.3 rename to docs/libcurl/curl_mime_data.3 diff --git a/re2-rust/docs/libcurl/curl_mime_data_cb.3 b/docs/libcurl/curl_mime_data_cb.3 similarity index 100% rename from re2-rust/docs/libcurl/curl_mime_data_cb.3 rename to docs/libcurl/curl_mime_data_cb.3 diff --git a/re2-rust/docs/libcurl/curl_mime_encoder.3 b/docs/libcurl/curl_mime_encoder.3 similarity index 100% rename from re2-rust/docs/libcurl/curl_mime_encoder.3 rename to docs/libcurl/curl_mime_encoder.3 diff --git a/re2-rust/docs/libcurl/curl_mime_filedata.3 b/docs/libcurl/curl_mime_filedata.3 similarity index 100% rename from re2-rust/docs/libcurl/curl_mime_filedata.3 rename to docs/libcurl/curl_mime_filedata.3 diff --git a/re2-rust/docs/libcurl/curl_mime_filename.3 b/docs/libcurl/curl_mime_filename.3 similarity index 100% rename from re2-rust/docs/libcurl/curl_mime_filename.3 rename to docs/libcurl/curl_mime_filename.3 diff --git a/re2-rust/docs/libcurl/curl_mime_free.3 b/docs/libcurl/curl_mime_free.3 similarity index 100% rename from re2-rust/docs/libcurl/curl_mime_free.3 rename to docs/libcurl/curl_mime_free.3 diff --git a/re2-rust/docs/libcurl/curl_mime_headers.3 b/docs/libcurl/curl_mime_headers.3 similarity index 100% rename from re2-rust/docs/libcurl/curl_mime_headers.3 rename to docs/libcurl/curl_mime_headers.3 diff --git a/re2-rust/docs/libcurl/curl_mime_init.3 b/docs/libcurl/curl_mime_init.3 similarity index 100% rename from re2-rust/docs/libcurl/curl_mime_init.3 rename to docs/libcurl/curl_mime_init.3 diff --git a/re2-rust/docs/libcurl/curl_mime_name.3 b/docs/libcurl/curl_mime_name.3 similarity index 100% rename from re2-rust/docs/libcurl/curl_mime_name.3 rename to docs/libcurl/curl_mime_name.3 diff --git a/re2-rust/docs/libcurl/curl_mime_subparts.3 b/docs/libcurl/curl_mime_subparts.3 similarity index 100% rename from re2-rust/docs/libcurl/curl_mime_subparts.3 rename to docs/libcurl/curl_mime_subparts.3 diff --git a/re2-rust/docs/libcurl/curl_mime_type.3 b/docs/libcurl/curl_mime_type.3 similarity index 100% rename from re2-rust/docs/libcurl/curl_mime_type.3 rename to docs/libcurl/curl_mime_type.3 diff --git a/re2-rust/docs/libcurl/curl_mprintf.3 b/docs/libcurl/curl_mprintf.3 similarity index 100% rename from re2-rust/docs/libcurl/curl_mprintf.3 rename to docs/libcurl/curl_mprintf.3 diff --git a/re2-rust/docs/libcurl/curl_multi_add_handle.3 b/docs/libcurl/curl_multi_add_handle.3 similarity index 100% rename from re2-rust/docs/libcurl/curl_multi_add_handle.3 rename to docs/libcurl/curl_multi_add_handle.3 diff --git a/re2-rust/docs/libcurl/curl_multi_assign.3 b/docs/libcurl/curl_multi_assign.3 similarity index 100% rename from re2-rust/docs/libcurl/curl_multi_assign.3 rename to docs/libcurl/curl_multi_assign.3 diff --git a/re2-rust/docs/libcurl/curl_multi_cleanup.3 b/docs/libcurl/curl_multi_cleanup.3 similarity index 100% rename from re2-rust/docs/libcurl/curl_multi_cleanup.3 rename to docs/libcurl/curl_multi_cleanup.3 diff --git a/re2-rust/docs/libcurl/curl_multi_fdset.3 b/docs/libcurl/curl_multi_fdset.3 similarity index 100% rename from re2-rust/docs/libcurl/curl_multi_fdset.3 rename to docs/libcurl/curl_multi_fdset.3 diff --git a/re2-rust/docs/libcurl/curl_multi_info_read.3 b/docs/libcurl/curl_multi_info_read.3 similarity index 100% rename from re2-rust/docs/libcurl/curl_multi_info_read.3 rename to docs/libcurl/curl_multi_info_read.3 diff --git a/re2-rust/docs/libcurl/curl_multi_init.3 b/docs/libcurl/curl_multi_init.3 similarity index 100% rename from re2-rust/docs/libcurl/curl_multi_init.3 rename to docs/libcurl/curl_multi_init.3 diff --git a/re2-rust/docs/libcurl/curl_multi_perform.3 b/docs/libcurl/curl_multi_perform.3 similarity index 100% rename from re2-rust/docs/libcurl/curl_multi_perform.3 rename to docs/libcurl/curl_multi_perform.3 diff --git a/re2-rust/docs/libcurl/curl_multi_poll.3 b/docs/libcurl/curl_multi_poll.3 similarity index 100% rename from re2-rust/docs/libcurl/curl_multi_poll.3 rename to docs/libcurl/curl_multi_poll.3 diff --git a/re2-rust/docs/libcurl/curl_multi_remove_handle.3 b/docs/libcurl/curl_multi_remove_handle.3 similarity index 100% rename from re2-rust/docs/libcurl/curl_multi_remove_handle.3 rename to docs/libcurl/curl_multi_remove_handle.3 diff --git a/re2-rust/docs/libcurl/curl_multi_setopt.3 b/docs/libcurl/curl_multi_setopt.3 similarity index 100% rename from re2-rust/docs/libcurl/curl_multi_setopt.3 rename to docs/libcurl/curl_multi_setopt.3 diff --git a/re2-rust/docs/libcurl/curl_multi_socket.3 b/docs/libcurl/curl_multi_socket.3 similarity index 100% rename from re2-rust/docs/libcurl/curl_multi_socket.3 rename to docs/libcurl/curl_multi_socket.3 diff --git a/re2-rust/docs/libcurl/curl_multi_socket_action.3 b/docs/libcurl/curl_multi_socket_action.3 similarity index 100% rename from re2-rust/docs/libcurl/curl_multi_socket_action.3 rename to docs/libcurl/curl_multi_socket_action.3 diff --git a/re2-rust/docs/libcurl/curl_multi_socket_all.3 b/docs/libcurl/curl_multi_socket_all.3 similarity index 100% rename from re2-rust/docs/libcurl/curl_multi_socket_all.3 rename to docs/libcurl/curl_multi_socket_all.3 diff --git a/re2-rust/docs/libcurl/curl_multi_strerror.3 b/docs/libcurl/curl_multi_strerror.3 similarity index 100% rename from re2-rust/docs/libcurl/curl_multi_strerror.3 rename to docs/libcurl/curl_multi_strerror.3 diff --git a/re2-rust/docs/libcurl/curl_multi_timeout.3 b/docs/libcurl/curl_multi_timeout.3 similarity index 100% rename from re2-rust/docs/libcurl/curl_multi_timeout.3 rename to docs/libcurl/curl_multi_timeout.3 diff --git a/re2-rust/docs/libcurl/curl_multi_wait.3 b/docs/libcurl/curl_multi_wait.3 similarity index 100% rename from re2-rust/docs/libcurl/curl_multi_wait.3 rename to docs/libcurl/curl_multi_wait.3 diff --git a/re2-rust/docs/libcurl/curl_multi_wakeup.3 b/docs/libcurl/curl_multi_wakeup.3 similarity index 100% rename from re2-rust/docs/libcurl/curl_multi_wakeup.3 rename to docs/libcurl/curl_multi_wakeup.3 diff --git a/re2-rust/docs/libcurl/curl_share_cleanup.3 b/docs/libcurl/curl_share_cleanup.3 similarity index 100% rename from re2-rust/docs/libcurl/curl_share_cleanup.3 rename to docs/libcurl/curl_share_cleanup.3 diff --git a/re2-rust/docs/libcurl/curl_share_init.3 b/docs/libcurl/curl_share_init.3 similarity index 100% rename from re2-rust/docs/libcurl/curl_share_init.3 rename to docs/libcurl/curl_share_init.3 diff --git a/re2-rust/docs/libcurl/curl_share_setopt.3 b/docs/libcurl/curl_share_setopt.3 similarity index 100% rename from re2-rust/docs/libcurl/curl_share_setopt.3 rename to docs/libcurl/curl_share_setopt.3 diff --git a/re2-rust/docs/libcurl/curl_share_strerror.3 b/docs/libcurl/curl_share_strerror.3 similarity index 100% rename from re2-rust/docs/libcurl/curl_share_strerror.3 rename to docs/libcurl/curl_share_strerror.3 diff --git a/re2-rust/docs/libcurl/curl_slist_append.3 b/docs/libcurl/curl_slist_append.3 similarity index 100% rename from re2-rust/docs/libcurl/curl_slist_append.3 rename to docs/libcurl/curl_slist_append.3 diff --git a/re2-rust/docs/libcurl/curl_slist_free_all.3 b/docs/libcurl/curl_slist_free_all.3 similarity index 100% rename from re2-rust/docs/libcurl/curl_slist_free_all.3 rename to docs/libcurl/curl_slist_free_all.3 diff --git a/re2-rust/docs/libcurl/curl_strequal.3 b/docs/libcurl/curl_strequal.3 similarity index 100% rename from re2-rust/docs/libcurl/curl_strequal.3 rename to docs/libcurl/curl_strequal.3 diff --git a/re2-rust/docs/libcurl/curl_strnequal.3 b/docs/libcurl/curl_strnequal.3 similarity index 100% rename from re2-rust/docs/libcurl/curl_strnequal.3 rename to docs/libcurl/curl_strnequal.3 diff --git a/re2-rust/docs/libcurl/curl_unescape.3 b/docs/libcurl/curl_unescape.3 similarity index 100% rename from re2-rust/docs/libcurl/curl_unescape.3 rename to docs/libcurl/curl_unescape.3 diff --git a/re2-rust/docs/libcurl/curl_url.3 b/docs/libcurl/curl_url.3 similarity index 100% rename from re2-rust/docs/libcurl/curl_url.3 rename to docs/libcurl/curl_url.3 diff --git a/re2-rust/docs/libcurl/curl_url_cleanup.3 b/docs/libcurl/curl_url_cleanup.3 similarity index 100% rename from re2-rust/docs/libcurl/curl_url_cleanup.3 rename to docs/libcurl/curl_url_cleanup.3 diff --git a/re2-rust/docs/libcurl/curl_url_dup.3 b/docs/libcurl/curl_url_dup.3 similarity index 100% rename from re2-rust/docs/libcurl/curl_url_dup.3 rename to docs/libcurl/curl_url_dup.3 diff --git a/re2-rust/docs/libcurl/curl_url_get.3 b/docs/libcurl/curl_url_get.3 similarity index 100% rename from re2-rust/docs/libcurl/curl_url_get.3 rename to docs/libcurl/curl_url_get.3 diff --git a/re2-rust/docs/libcurl/curl_url_set.3 b/docs/libcurl/curl_url_set.3 similarity index 100% rename from re2-rust/docs/libcurl/curl_url_set.3 rename to docs/libcurl/curl_url_set.3 diff --git a/re2-rust/docs/libcurl/curl_version.3 b/docs/libcurl/curl_version.3 similarity index 100% rename from re2-rust/docs/libcurl/curl_version.3 rename to docs/libcurl/curl_version.3 diff --git a/re2-rust/docs/libcurl/curl_version_info.3 b/docs/libcurl/curl_version_info.3 similarity index 100% rename from re2-rust/docs/libcurl/curl_version_info.3 rename to docs/libcurl/curl_version_info.3 diff --git a/re2-rust/docs/libcurl/libcurl-easy.3 b/docs/libcurl/libcurl-easy.3 similarity index 100% rename from re2-rust/docs/libcurl/libcurl-easy.3 rename to docs/libcurl/libcurl-easy.3 diff --git a/re2-rust/docs/libcurl/libcurl-env.3 b/docs/libcurl/libcurl-env.3 similarity index 100% rename from re2-rust/docs/libcurl/libcurl-env.3 rename to docs/libcurl/libcurl-env.3 diff --git a/re2-rust/docs/libcurl/libcurl-errors.3 b/docs/libcurl/libcurl-errors.3 similarity index 100% rename from re2-rust/docs/libcurl/libcurl-errors.3 rename to docs/libcurl/libcurl-errors.3 diff --git a/re2-rust/docs/libcurl/libcurl-multi.3 b/docs/libcurl/libcurl-multi.3 similarity index 100% rename from re2-rust/docs/libcurl/libcurl-multi.3 rename to docs/libcurl/libcurl-multi.3 diff --git a/re2-rust/docs/libcurl/libcurl-security.3 b/docs/libcurl/libcurl-security.3 similarity index 100% rename from re2-rust/docs/libcurl/libcurl-security.3 rename to docs/libcurl/libcurl-security.3 diff --git a/re2-rust/docs/libcurl/libcurl-share.3 b/docs/libcurl/libcurl-share.3 similarity index 100% rename from re2-rust/docs/libcurl/libcurl-share.3 rename to docs/libcurl/libcurl-share.3 diff --git a/re2-rust/docs/libcurl/libcurl-symbols.3 b/docs/libcurl/libcurl-symbols.3 similarity index 100% rename from re2-rust/docs/libcurl/libcurl-symbols.3 rename to docs/libcurl/libcurl-symbols.3 diff --git a/re2-rust/docs/libcurl/libcurl-thread.3 b/docs/libcurl/libcurl-thread.3 similarity index 100% rename from re2-rust/docs/libcurl/libcurl-thread.3 rename to docs/libcurl/libcurl-thread.3 diff --git a/re2-rust/docs/libcurl/libcurl-tutorial.3 b/docs/libcurl/libcurl-tutorial.3 similarity index 100% rename from re2-rust/docs/libcurl/libcurl-tutorial.3 rename to docs/libcurl/libcurl-tutorial.3 diff --git a/re2-rust/docs/libcurl/libcurl-url.3 b/docs/libcurl/libcurl-url.3 similarity index 100% rename from re2-rust/docs/libcurl/libcurl-url.3 rename to docs/libcurl/libcurl-url.3 diff --git a/re2-rust/docs/libcurl/libcurl.3 b/docs/libcurl/libcurl.3 similarity index 100% rename from re2-rust/docs/libcurl/libcurl.3 rename to docs/libcurl/libcurl.3 diff --git a/re2-rust/docs/libcurl/libcurl.m4 b/docs/libcurl/libcurl.m4 similarity index 100% rename from re2-rust/docs/libcurl/libcurl.m4 rename to docs/libcurl/libcurl.m4 diff --git a/re2-rust/docs/libcurl/mksymbolsmanpage.pl b/docs/libcurl/mksymbolsmanpage.pl similarity index 100% rename from re2-rust/docs/libcurl/mksymbolsmanpage.pl rename to docs/libcurl/mksymbolsmanpage.pl diff --git a/re2-rust/docs/libcurl/opts/CMakeLists.txt b/docs/libcurl/opts/CMakeLists.txt similarity index 100% rename from re2-rust/docs/libcurl/opts/CMakeLists.txt rename to docs/libcurl/opts/CMakeLists.txt diff --git a/re2-rust/docs/libcurl/opts/CURLINFO_ACTIVESOCKET.3 b/docs/libcurl/opts/CURLINFO_ACTIVESOCKET.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLINFO_ACTIVESOCKET.3 rename to docs/libcurl/opts/CURLINFO_ACTIVESOCKET.3 diff --git a/re2-rust/docs/libcurl/opts/CURLINFO_APPCONNECT_TIME.3 b/docs/libcurl/opts/CURLINFO_APPCONNECT_TIME.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLINFO_APPCONNECT_TIME.3 rename to docs/libcurl/opts/CURLINFO_APPCONNECT_TIME.3 diff --git a/re2-rust/docs/libcurl/opts/CURLINFO_APPCONNECT_TIME_T.3 b/docs/libcurl/opts/CURLINFO_APPCONNECT_TIME_T.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLINFO_APPCONNECT_TIME_T.3 rename to docs/libcurl/opts/CURLINFO_APPCONNECT_TIME_T.3 diff --git a/re2-rust/docs/libcurl/opts/CURLINFO_CERTINFO.3 b/docs/libcurl/opts/CURLINFO_CERTINFO.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLINFO_CERTINFO.3 rename to docs/libcurl/opts/CURLINFO_CERTINFO.3 diff --git a/re2-rust/docs/libcurl/opts/CURLINFO_CONDITION_UNMET.3 b/docs/libcurl/opts/CURLINFO_CONDITION_UNMET.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLINFO_CONDITION_UNMET.3 rename to docs/libcurl/opts/CURLINFO_CONDITION_UNMET.3 diff --git a/re2-rust/docs/libcurl/opts/CURLINFO_CONNECT_TIME.3 b/docs/libcurl/opts/CURLINFO_CONNECT_TIME.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLINFO_CONNECT_TIME.3 rename to docs/libcurl/opts/CURLINFO_CONNECT_TIME.3 diff --git a/re2-rust/docs/libcurl/opts/CURLINFO_CONNECT_TIME_T.3 b/docs/libcurl/opts/CURLINFO_CONNECT_TIME_T.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLINFO_CONNECT_TIME_T.3 rename to docs/libcurl/opts/CURLINFO_CONNECT_TIME_T.3 diff --git a/re2-rust/docs/libcurl/opts/CURLINFO_CONTENT_LENGTH_DOWNLOAD.3 b/docs/libcurl/opts/CURLINFO_CONTENT_LENGTH_DOWNLOAD.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLINFO_CONTENT_LENGTH_DOWNLOAD.3 rename to docs/libcurl/opts/CURLINFO_CONTENT_LENGTH_DOWNLOAD.3 diff --git a/re2-rust/docs/libcurl/opts/CURLINFO_CONTENT_LENGTH_DOWNLOAD_T.3 b/docs/libcurl/opts/CURLINFO_CONTENT_LENGTH_DOWNLOAD_T.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLINFO_CONTENT_LENGTH_DOWNLOAD_T.3 rename to docs/libcurl/opts/CURLINFO_CONTENT_LENGTH_DOWNLOAD_T.3 diff --git a/re2-rust/docs/libcurl/opts/CURLINFO_CONTENT_LENGTH_UPLOAD.3 b/docs/libcurl/opts/CURLINFO_CONTENT_LENGTH_UPLOAD.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLINFO_CONTENT_LENGTH_UPLOAD.3 rename to docs/libcurl/opts/CURLINFO_CONTENT_LENGTH_UPLOAD.3 diff --git a/re2-rust/docs/libcurl/opts/CURLINFO_CONTENT_LENGTH_UPLOAD_T.3 b/docs/libcurl/opts/CURLINFO_CONTENT_LENGTH_UPLOAD_T.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLINFO_CONTENT_LENGTH_UPLOAD_T.3 rename to docs/libcurl/opts/CURLINFO_CONTENT_LENGTH_UPLOAD_T.3 diff --git a/re2-rust/docs/libcurl/opts/CURLINFO_CONTENT_TYPE.3 b/docs/libcurl/opts/CURLINFO_CONTENT_TYPE.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLINFO_CONTENT_TYPE.3 rename to docs/libcurl/opts/CURLINFO_CONTENT_TYPE.3 diff --git a/re2-rust/docs/libcurl/opts/CURLINFO_COOKIELIST.3 b/docs/libcurl/opts/CURLINFO_COOKIELIST.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLINFO_COOKIELIST.3 rename to docs/libcurl/opts/CURLINFO_COOKIELIST.3 diff --git a/re2-rust/docs/libcurl/opts/CURLINFO_EFFECTIVE_METHOD.3 b/docs/libcurl/opts/CURLINFO_EFFECTIVE_METHOD.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLINFO_EFFECTIVE_METHOD.3 rename to docs/libcurl/opts/CURLINFO_EFFECTIVE_METHOD.3 diff --git a/re2-rust/docs/libcurl/opts/CURLINFO_EFFECTIVE_URL.3 b/docs/libcurl/opts/CURLINFO_EFFECTIVE_URL.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLINFO_EFFECTIVE_URL.3 rename to docs/libcurl/opts/CURLINFO_EFFECTIVE_URL.3 diff --git a/re2-rust/docs/libcurl/opts/CURLINFO_FILETIME.3 b/docs/libcurl/opts/CURLINFO_FILETIME.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLINFO_FILETIME.3 rename to docs/libcurl/opts/CURLINFO_FILETIME.3 diff --git a/re2-rust/docs/libcurl/opts/CURLINFO_FILETIME_T.3 b/docs/libcurl/opts/CURLINFO_FILETIME_T.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLINFO_FILETIME_T.3 rename to docs/libcurl/opts/CURLINFO_FILETIME_T.3 diff --git a/re2-rust/docs/libcurl/opts/CURLINFO_FTP_ENTRY_PATH.3 b/docs/libcurl/opts/CURLINFO_FTP_ENTRY_PATH.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLINFO_FTP_ENTRY_PATH.3 rename to docs/libcurl/opts/CURLINFO_FTP_ENTRY_PATH.3 diff --git a/re2-rust/docs/libcurl/opts/CURLINFO_HEADER_SIZE.3 b/docs/libcurl/opts/CURLINFO_HEADER_SIZE.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLINFO_HEADER_SIZE.3 rename to docs/libcurl/opts/CURLINFO_HEADER_SIZE.3 diff --git a/re2-rust/docs/libcurl/opts/CURLINFO_HTTPAUTH_AVAIL.3 b/docs/libcurl/opts/CURLINFO_HTTPAUTH_AVAIL.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLINFO_HTTPAUTH_AVAIL.3 rename to docs/libcurl/opts/CURLINFO_HTTPAUTH_AVAIL.3 diff --git a/re2-rust/docs/libcurl/opts/CURLINFO_HTTP_CONNECTCODE.3 b/docs/libcurl/opts/CURLINFO_HTTP_CONNECTCODE.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLINFO_HTTP_CONNECTCODE.3 rename to docs/libcurl/opts/CURLINFO_HTTP_CONNECTCODE.3 diff --git a/re2-rust/docs/libcurl/opts/CURLINFO_HTTP_VERSION.3 b/docs/libcurl/opts/CURLINFO_HTTP_VERSION.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLINFO_HTTP_VERSION.3 rename to docs/libcurl/opts/CURLINFO_HTTP_VERSION.3 diff --git a/re2-rust/docs/libcurl/opts/CURLINFO_LASTSOCKET.3 b/docs/libcurl/opts/CURLINFO_LASTSOCKET.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLINFO_LASTSOCKET.3 rename to docs/libcurl/opts/CURLINFO_LASTSOCKET.3 diff --git a/re2-rust/docs/libcurl/opts/CURLINFO_LOCAL_IP.3 b/docs/libcurl/opts/CURLINFO_LOCAL_IP.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLINFO_LOCAL_IP.3 rename to docs/libcurl/opts/CURLINFO_LOCAL_IP.3 diff --git a/re2-rust/docs/libcurl/opts/CURLINFO_LOCAL_PORT.3 b/docs/libcurl/opts/CURLINFO_LOCAL_PORT.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLINFO_LOCAL_PORT.3 rename to docs/libcurl/opts/CURLINFO_LOCAL_PORT.3 diff --git a/re2-rust/docs/libcurl/opts/CURLINFO_NAMELOOKUP_TIME.3 b/docs/libcurl/opts/CURLINFO_NAMELOOKUP_TIME.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLINFO_NAMELOOKUP_TIME.3 rename to docs/libcurl/opts/CURLINFO_NAMELOOKUP_TIME.3 diff --git a/re2-rust/docs/libcurl/opts/CURLINFO_NAMELOOKUP_TIME_T.3 b/docs/libcurl/opts/CURLINFO_NAMELOOKUP_TIME_T.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLINFO_NAMELOOKUP_TIME_T.3 rename to docs/libcurl/opts/CURLINFO_NAMELOOKUP_TIME_T.3 diff --git a/re2-rust/docs/libcurl/opts/CURLINFO_NUM_CONNECTS.3 b/docs/libcurl/opts/CURLINFO_NUM_CONNECTS.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLINFO_NUM_CONNECTS.3 rename to docs/libcurl/opts/CURLINFO_NUM_CONNECTS.3 diff --git a/re2-rust/docs/libcurl/opts/CURLINFO_OS_ERRNO.3 b/docs/libcurl/opts/CURLINFO_OS_ERRNO.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLINFO_OS_ERRNO.3 rename to docs/libcurl/opts/CURLINFO_OS_ERRNO.3 diff --git a/re2-rust/docs/libcurl/opts/CURLINFO_PRETRANSFER_TIME.3 b/docs/libcurl/opts/CURLINFO_PRETRANSFER_TIME.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLINFO_PRETRANSFER_TIME.3 rename to docs/libcurl/opts/CURLINFO_PRETRANSFER_TIME.3 diff --git a/re2-rust/docs/libcurl/opts/CURLINFO_PRETRANSFER_TIME_T.3 b/docs/libcurl/opts/CURLINFO_PRETRANSFER_TIME_T.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLINFO_PRETRANSFER_TIME_T.3 rename to docs/libcurl/opts/CURLINFO_PRETRANSFER_TIME_T.3 diff --git a/re2-rust/docs/libcurl/opts/CURLINFO_PRIMARY_IP.3 b/docs/libcurl/opts/CURLINFO_PRIMARY_IP.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLINFO_PRIMARY_IP.3 rename to docs/libcurl/opts/CURLINFO_PRIMARY_IP.3 diff --git a/re2-rust/docs/libcurl/opts/CURLINFO_PRIMARY_PORT.3 b/docs/libcurl/opts/CURLINFO_PRIMARY_PORT.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLINFO_PRIMARY_PORT.3 rename to docs/libcurl/opts/CURLINFO_PRIMARY_PORT.3 diff --git a/re2-rust/docs/libcurl/opts/CURLINFO_PRIVATE.3 b/docs/libcurl/opts/CURLINFO_PRIVATE.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLINFO_PRIVATE.3 rename to docs/libcurl/opts/CURLINFO_PRIVATE.3 diff --git a/re2-rust/docs/libcurl/opts/CURLINFO_PROTOCOL.3 b/docs/libcurl/opts/CURLINFO_PROTOCOL.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLINFO_PROTOCOL.3 rename to docs/libcurl/opts/CURLINFO_PROTOCOL.3 diff --git a/re2-rust/docs/libcurl/opts/CURLINFO_PROXYAUTH_AVAIL.3 b/docs/libcurl/opts/CURLINFO_PROXYAUTH_AVAIL.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLINFO_PROXYAUTH_AVAIL.3 rename to docs/libcurl/opts/CURLINFO_PROXYAUTH_AVAIL.3 diff --git a/re2-rust/docs/libcurl/opts/CURLINFO_PROXY_ERROR.3 b/docs/libcurl/opts/CURLINFO_PROXY_ERROR.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLINFO_PROXY_ERROR.3 rename to docs/libcurl/opts/CURLINFO_PROXY_ERROR.3 diff --git a/re2-rust/docs/libcurl/opts/CURLINFO_PROXY_SSL_VERIFYRESULT.3 b/docs/libcurl/opts/CURLINFO_PROXY_SSL_VERIFYRESULT.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLINFO_PROXY_SSL_VERIFYRESULT.3 rename to docs/libcurl/opts/CURLINFO_PROXY_SSL_VERIFYRESULT.3 diff --git a/re2-rust/docs/libcurl/opts/CURLINFO_REDIRECT_COUNT.3 b/docs/libcurl/opts/CURLINFO_REDIRECT_COUNT.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLINFO_REDIRECT_COUNT.3 rename to docs/libcurl/opts/CURLINFO_REDIRECT_COUNT.3 diff --git a/re2-rust/docs/libcurl/opts/CURLINFO_REDIRECT_TIME.3 b/docs/libcurl/opts/CURLINFO_REDIRECT_TIME.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLINFO_REDIRECT_TIME.3 rename to docs/libcurl/opts/CURLINFO_REDIRECT_TIME.3 diff --git a/re2-rust/docs/libcurl/opts/CURLINFO_REDIRECT_TIME_T.3 b/docs/libcurl/opts/CURLINFO_REDIRECT_TIME_T.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLINFO_REDIRECT_TIME_T.3 rename to docs/libcurl/opts/CURLINFO_REDIRECT_TIME_T.3 diff --git a/re2-rust/docs/libcurl/opts/CURLINFO_REDIRECT_URL.3 b/docs/libcurl/opts/CURLINFO_REDIRECT_URL.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLINFO_REDIRECT_URL.3 rename to docs/libcurl/opts/CURLINFO_REDIRECT_URL.3 diff --git a/re2-rust/docs/libcurl/opts/CURLINFO_REFERER.3 b/docs/libcurl/opts/CURLINFO_REFERER.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLINFO_REFERER.3 rename to docs/libcurl/opts/CURLINFO_REFERER.3 diff --git a/re2-rust/docs/libcurl/opts/CURLINFO_REQUEST_SIZE.3 b/docs/libcurl/opts/CURLINFO_REQUEST_SIZE.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLINFO_REQUEST_SIZE.3 rename to docs/libcurl/opts/CURLINFO_REQUEST_SIZE.3 diff --git a/re2-rust/docs/libcurl/opts/CURLINFO_RESPONSE_CODE.3 b/docs/libcurl/opts/CURLINFO_RESPONSE_CODE.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLINFO_RESPONSE_CODE.3 rename to docs/libcurl/opts/CURLINFO_RESPONSE_CODE.3 diff --git a/re2-rust/docs/libcurl/opts/CURLINFO_RETRY_AFTER.3 b/docs/libcurl/opts/CURLINFO_RETRY_AFTER.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLINFO_RETRY_AFTER.3 rename to docs/libcurl/opts/CURLINFO_RETRY_AFTER.3 diff --git a/re2-rust/docs/libcurl/opts/CURLINFO_RTSP_CLIENT_CSEQ.3 b/docs/libcurl/opts/CURLINFO_RTSP_CLIENT_CSEQ.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLINFO_RTSP_CLIENT_CSEQ.3 rename to docs/libcurl/opts/CURLINFO_RTSP_CLIENT_CSEQ.3 diff --git a/re2-rust/docs/libcurl/opts/CURLINFO_RTSP_CSEQ_RECV.3 b/docs/libcurl/opts/CURLINFO_RTSP_CSEQ_RECV.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLINFO_RTSP_CSEQ_RECV.3 rename to docs/libcurl/opts/CURLINFO_RTSP_CSEQ_RECV.3 diff --git a/re2-rust/docs/libcurl/opts/CURLINFO_RTSP_SERVER_CSEQ.3 b/docs/libcurl/opts/CURLINFO_RTSP_SERVER_CSEQ.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLINFO_RTSP_SERVER_CSEQ.3 rename to docs/libcurl/opts/CURLINFO_RTSP_SERVER_CSEQ.3 diff --git a/re2-rust/docs/libcurl/opts/CURLINFO_RTSP_SESSION_ID.3 b/docs/libcurl/opts/CURLINFO_RTSP_SESSION_ID.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLINFO_RTSP_SESSION_ID.3 rename to docs/libcurl/opts/CURLINFO_RTSP_SESSION_ID.3 diff --git a/re2-rust/docs/libcurl/opts/CURLINFO_SCHEME.3 b/docs/libcurl/opts/CURLINFO_SCHEME.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLINFO_SCHEME.3 rename to docs/libcurl/opts/CURLINFO_SCHEME.3 diff --git a/re2-rust/docs/libcurl/opts/CURLINFO_SIZE_DOWNLOAD.3 b/docs/libcurl/opts/CURLINFO_SIZE_DOWNLOAD.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLINFO_SIZE_DOWNLOAD.3 rename to docs/libcurl/opts/CURLINFO_SIZE_DOWNLOAD.3 diff --git a/re2-rust/docs/libcurl/opts/CURLINFO_SIZE_DOWNLOAD_T.3 b/docs/libcurl/opts/CURLINFO_SIZE_DOWNLOAD_T.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLINFO_SIZE_DOWNLOAD_T.3 rename to docs/libcurl/opts/CURLINFO_SIZE_DOWNLOAD_T.3 diff --git a/re2-rust/docs/libcurl/opts/CURLINFO_SIZE_UPLOAD.3 b/docs/libcurl/opts/CURLINFO_SIZE_UPLOAD.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLINFO_SIZE_UPLOAD.3 rename to docs/libcurl/opts/CURLINFO_SIZE_UPLOAD.3 diff --git a/re2-rust/docs/libcurl/opts/CURLINFO_SIZE_UPLOAD_T.3 b/docs/libcurl/opts/CURLINFO_SIZE_UPLOAD_T.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLINFO_SIZE_UPLOAD_T.3 rename to docs/libcurl/opts/CURLINFO_SIZE_UPLOAD_T.3 diff --git a/re2-rust/docs/libcurl/opts/CURLINFO_SPEED_DOWNLOAD.3 b/docs/libcurl/opts/CURLINFO_SPEED_DOWNLOAD.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLINFO_SPEED_DOWNLOAD.3 rename to docs/libcurl/opts/CURLINFO_SPEED_DOWNLOAD.3 diff --git a/re2-rust/docs/libcurl/opts/CURLINFO_SPEED_DOWNLOAD_T.3 b/docs/libcurl/opts/CURLINFO_SPEED_DOWNLOAD_T.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLINFO_SPEED_DOWNLOAD_T.3 rename to docs/libcurl/opts/CURLINFO_SPEED_DOWNLOAD_T.3 diff --git a/re2-rust/docs/libcurl/opts/CURLINFO_SPEED_UPLOAD.3 b/docs/libcurl/opts/CURLINFO_SPEED_UPLOAD.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLINFO_SPEED_UPLOAD.3 rename to docs/libcurl/opts/CURLINFO_SPEED_UPLOAD.3 diff --git a/re2-rust/docs/libcurl/opts/CURLINFO_SPEED_UPLOAD_T.3 b/docs/libcurl/opts/CURLINFO_SPEED_UPLOAD_T.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLINFO_SPEED_UPLOAD_T.3 rename to docs/libcurl/opts/CURLINFO_SPEED_UPLOAD_T.3 diff --git a/re2-rust/docs/libcurl/opts/CURLINFO_SSL_ENGINES.3 b/docs/libcurl/opts/CURLINFO_SSL_ENGINES.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLINFO_SSL_ENGINES.3 rename to docs/libcurl/opts/CURLINFO_SSL_ENGINES.3 diff --git a/re2-rust/docs/libcurl/opts/CURLINFO_SSL_VERIFYRESULT.3 b/docs/libcurl/opts/CURLINFO_SSL_VERIFYRESULT.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLINFO_SSL_VERIFYRESULT.3 rename to docs/libcurl/opts/CURLINFO_SSL_VERIFYRESULT.3 diff --git a/re2-rust/docs/libcurl/opts/CURLINFO_STARTTRANSFER_TIME.3 b/docs/libcurl/opts/CURLINFO_STARTTRANSFER_TIME.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLINFO_STARTTRANSFER_TIME.3 rename to docs/libcurl/opts/CURLINFO_STARTTRANSFER_TIME.3 diff --git a/re2-rust/docs/libcurl/opts/CURLINFO_STARTTRANSFER_TIME_T.3 b/docs/libcurl/opts/CURLINFO_STARTTRANSFER_TIME_T.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLINFO_STARTTRANSFER_TIME_T.3 rename to docs/libcurl/opts/CURLINFO_STARTTRANSFER_TIME_T.3 diff --git a/re2-rust/docs/libcurl/opts/CURLINFO_TLS_SESSION.3 b/docs/libcurl/opts/CURLINFO_TLS_SESSION.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLINFO_TLS_SESSION.3 rename to docs/libcurl/opts/CURLINFO_TLS_SESSION.3 diff --git a/re2-rust/docs/libcurl/opts/CURLINFO_TLS_SSL_PTR.3 b/docs/libcurl/opts/CURLINFO_TLS_SSL_PTR.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLINFO_TLS_SSL_PTR.3 rename to docs/libcurl/opts/CURLINFO_TLS_SSL_PTR.3 diff --git a/re2-rust/docs/libcurl/opts/CURLINFO_TOTAL_TIME.3 b/docs/libcurl/opts/CURLINFO_TOTAL_TIME.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLINFO_TOTAL_TIME.3 rename to docs/libcurl/opts/CURLINFO_TOTAL_TIME.3 diff --git a/re2-rust/docs/libcurl/opts/CURLINFO_TOTAL_TIME_T.3 b/docs/libcurl/opts/CURLINFO_TOTAL_TIME_T.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLINFO_TOTAL_TIME_T.3 rename to docs/libcurl/opts/CURLINFO_TOTAL_TIME_T.3 diff --git a/re2-rust/docs/libcurl/opts/CURLMOPT_CHUNK_LENGTH_PENALTY_SIZE.3 b/docs/libcurl/opts/CURLMOPT_CHUNK_LENGTH_PENALTY_SIZE.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLMOPT_CHUNK_LENGTH_PENALTY_SIZE.3 rename to docs/libcurl/opts/CURLMOPT_CHUNK_LENGTH_PENALTY_SIZE.3 diff --git a/re2-rust/docs/libcurl/opts/CURLMOPT_CONTENT_LENGTH_PENALTY_SIZE.3 b/docs/libcurl/opts/CURLMOPT_CONTENT_LENGTH_PENALTY_SIZE.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLMOPT_CONTENT_LENGTH_PENALTY_SIZE.3 rename to docs/libcurl/opts/CURLMOPT_CONTENT_LENGTH_PENALTY_SIZE.3 diff --git a/re2-rust/docs/libcurl/opts/CURLMOPT_MAXCONNECTS.3 b/docs/libcurl/opts/CURLMOPT_MAXCONNECTS.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLMOPT_MAXCONNECTS.3 rename to docs/libcurl/opts/CURLMOPT_MAXCONNECTS.3 diff --git a/re2-rust/docs/libcurl/opts/CURLMOPT_MAX_CONCURRENT_STREAMS.3 b/docs/libcurl/opts/CURLMOPT_MAX_CONCURRENT_STREAMS.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLMOPT_MAX_CONCURRENT_STREAMS.3 rename to docs/libcurl/opts/CURLMOPT_MAX_CONCURRENT_STREAMS.3 diff --git a/re2-rust/docs/libcurl/opts/CURLMOPT_MAX_HOST_CONNECTIONS.3 b/docs/libcurl/opts/CURLMOPT_MAX_HOST_CONNECTIONS.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLMOPT_MAX_HOST_CONNECTIONS.3 rename to docs/libcurl/opts/CURLMOPT_MAX_HOST_CONNECTIONS.3 diff --git a/re2-rust/docs/libcurl/opts/CURLMOPT_MAX_PIPELINE_LENGTH.3 b/docs/libcurl/opts/CURLMOPT_MAX_PIPELINE_LENGTH.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLMOPT_MAX_PIPELINE_LENGTH.3 rename to docs/libcurl/opts/CURLMOPT_MAX_PIPELINE_LENGTH.3 diff --git a/re2-rust/docs/libcurl/opts/CURLMOPT_MAX_TOTAL_CONNECTIONS.3 b/docs/libcurl/opts/CURLMOPT_MAX_TOTAL_CONNECTIONS.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLMOPT_MAX_TOTAL_CONNECTIONS.3 rename to docs/libcurl/opts/CURLMOPT_MAX_TOTAL_CONNECTIONS.3 diff --git a/re2-rust/docs/libcurl/opts/CURLMOPT_PIPELINING.3 b/docs/libcurl/opts/CURLMOPT_PIPELINING.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLMOPT_PIPELINING.3 rename to docs/libcurl/opts/CURLMOPT_PIPELINING.3 diff --git a/re2-rust/docs/libcurl/opts/CURLMOPT_PIPELINING_SERVER_BL.3 b/docs/libcurl/opts/CURLMOPT_PIPELINING_SERVER_BL.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLMOPT_PIPELINING_SERVER_BL.3 rename to docs/libcurl/opts/CURLMOPT_PIPELINING_SERVER_BL.3 diff --git a/re2-rust/docs/libcurl/opts/CURLMOPT_PIPELINING_SITE_BL.3 b/docs/libcurl/opts/CURLMOPT_PIPELINING_SITE_BL.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLMOPT_PIPELINING_SITE_BL.3 rename to docs/libcurl/opts/CURLMOPT_PIPELINING_SITE_BL.3 diff --git a/re2-rust/docs/libcurl/opts/CURLMOPT_PUSHDATA.3 b/docs/libcurl/opts/CURLMOPT_PUSHDATA.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLMOPT_PUSHDATA.3 rename to docs/libcurl/opts/CURLMOPT_PUSHDATA.3 diff --git a/re2-rust/docs/libcurl/opts/CURLMOPT_PUSHFUNCTION.3 b/docs/libcurl/opts/CURLMOPT_PUSHFUNCTION.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLMOPT_PUSHFUNCTION.3 rename to docs/libcurl/opts/CURLMOPT_PUSHFUNCTION.3 diff --git a/re2-rust/docs/libcurl/opts/CURLMOPT_SOCKETDATA.3 b/docs/libcurl/opts/CURLMOPT_SOCKETDATA.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLMOPT_SOCKETDATA.3 rename to docs/libcurl/opts/CURLMOPT_SOCKETDATA.3 diff --git a/re2-rust/docs/libcurl/opts/CURLMOPT_SOCKETFUNCTION.3 b/docs/libcurl/opts/CURLMOPT_SOCKETFUNCTION.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLMOPT_SOCKETFUNCTION.3 rename to docs/libcurl/opts/CURLMOPT_SOCKETFUNCTION.3 diff --git a/re2-rust/docs/libcurl/opts/CURLMOPT_TIMERDATA.3 b/docs/libcurl/opts/CURLMOPT_TIMERDATA.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLMOPT_TIMERDATA.3 rename to docs/libcurl/opts/CURLMOPT_TIMERDATA.3 diff --git a/re2-rust/docs/libcurl/opts/CURLMOPT_TIMERFUNCTION.3 b/docs/libcurl/opts/CURLMOPT_TIMERFUNCTION.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLMOPT_TIMERFUNCTION.3 rename to docs/libcurl/opts/CURLMOPT_TIMERFUNCTION.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_ABSTRACT_UNIX_SOCKET.3 b/docs/libcurl/opts/CURLOPT_ABSTRACT_UNIX_SOCKET.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_ABSTRACT_UNIX_SOCKET.3 rename to docs/libcurl/opts/CURLOPT_ABSTRACT_UNIX_SOCKET.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_ACCEPTTIMEOUT_MS.3 b/docs/libcurl/opts/CURLOPT_ACCEPTTIMEOUT_MS.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_ACCEPTTIMEOUT_MS.3 rename to docs/libcurl/opts/CURLOPT_ACCEPTTIMEOUT_MS.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_ACCEPT_ENCODING.3 b/docs/libcurl/opts/CURLOPT_ACCEPT_ENCODING.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_ACCEPT_ENCODING.3 rename to docs/libcurl/opts/CURLOPT_ACCEPT_ENCODING.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_ADDRESS_SCOPE.3 b/docs/libcurl/opts/CURLOPT_ADDRESS_SCOPE.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_ADDRESS_SCOPE.3 rename to docs/libcurl/opts/CURLOPT_ADDRESS_SCOPE.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_ALTSVC.3 b/docs/libcurl/opts/CURLOPT_ALTSVC.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_ALTSVC.3 rename to docs/libcurl/opts/CURLOPT_ALTSVC.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_ALTSVC_CTRL.3 b/docs/libcurl/opts/CURLOPT_ALTSVC_CTRL.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_ALTSVC_CTRL.3 rename to docs/libcurl/opts/CURLOPT_ALTSVC_CTRL.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_APPEND.3 b/docs/libcurl/opts/CURLOPT_APPEND.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_APPEND.3 rename to docs/libcurl/opts/CURLOPT_APPEND.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_AUTOREFERER.3 b/docs/libcurl/opts/CURLOPT_AUTOREFERER.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_AUTOREFERER.3 rename to docs/libcurl/opts/CURLOPT_AUTOREFERER.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_AWS_SIGV4.3 b/docs/libcurl/opts/CURLOPT_AWS_SIGV4.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_AWS_SIGV4.3 rename to docs/libcurl/opts/CURLOPT_AWS_SIGV4.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_BUFFERSIZE.3 b/docs/libcurl/opts/CURLOPT_BUFFERSIZE.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_BUFFERSIZE.3 rename to docs/libcurl/opts/CURLOPT_BUFFERSIZE.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_CAINFO.3 b/docs/libcurl/opts/CURLOPT_CAINFO.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_CAINFO.3 rename to docs/libcurl/opts/CURLOPT_CAINFO.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_CAINFO_BLOB.3 b/docs/libcurl/opts/CURLOPT_CAINFO_BLOB.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_CAINFO_BLOB.3 rename to docs/libcurl/opts/CURLOPT_CAINFO_BLOB.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_CAPATH.3 b/docs/libcurl/opts/CURLOPT_CAPATH.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_CAPATH.3 rename to docs/libcurl/opts/CURLOPT_CAPATH.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_CERTINFO.3 b/docs/libcurl/opts/CURLOPT_CERTINFO.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_CERTINFO.3 rename to docs/libcurl/opts/CURLOPT_CERTINFO.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_CHUNK_BGN_FUNCTION.3 b/docs/libcurl/opts/CURLOPT_CHUNK_BGN_FUNCTION.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_CHUNK_BGN_FUNCTION.3 rename to docs/libcurl/opts/CURLOPT_CHUNK_BGN_FUNCTION.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_CHUNK_DATA.3 b/docs/libcurl/opts/CURLOPT_CHUNK_DATA.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_CHUNK_DATA.3 rename to docs/libcurl/opts/CURLOPT_CHUNK_DATA.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_CHUNK_END_FUNCTION.3 b/docs/libcurl/opts/CURLOPT_CHUNK_END_FUNCTION.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_CHUNK_END_FUNCTION.3 rename to docs/libcurl/opts/CURLOPT_CHUNK_END_FUNCTION.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_CLOSESOCKETDATA.3 b/docs/libcurl/opts/CURLOPT_CLOSESOCKETDATA.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_CLOSESOCKETDATA.3 rename to docs/libcurl/opts/CURLOPT_CLOSESOCKETDATA.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_CLOSESOCKETFUNCTION.3 b/docs/libcurl/opts/CURLOPT_CLOSESOCKETFUNCTION.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_CLOSESOCKETFUNCTION.3 rename to docs/libcurl/opts/CURLOPT_CLOSESOCKETFUNCTION.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_CONNECTTIMEOUT.3 b/docs/libcurl/opts/CURLOPT_CONNECTTIMEOUT.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_CONNECTTIMEOUT.3 rename to docs/libcurl/opts/CURLOPT_CONNECTTIMEOUT.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_CONNECTTIMEOUT_MS.3 b/docs/libcurl/opts/CURLOPT_CONNECTTIMEOUT_MS.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_CONNECTTIMEOUT_MS.3 rename to docs/libcurl/opts/CURLOPT_CONNECTTIMEOUT_MS.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_CONNECT_ONLY.3 b/docs/libcurl/opts/CURLOPT_CONNECT_ONLY.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_CONNECT_ONLY.3 rename to docs/libcurl/opts/CURLOPT_CONNECT_ONLY.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_CONNECT_TO.3 b/docs/libcurl/opts/CURLOPT_CONNECT_TO.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_CONNECT_TO.3 rename to docs/libcurl/opts/CURLOPT_CONNECT_TO.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_CONV_FROM_NETWORK_FUNCTION.3 b/docs/libcurl/opts/CURLOPT_CONV_FROM_NETWORK_FUNCTION.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_CONV_FROM_NETWORK_FUNCTION.3 rename to docs/libcurl/opts/CURLOPT_CONV_FROM_NETWORK_FUNCTION.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_CONV_FROM_UTF8_FUNCTION.3 b/docs/libcurl/opts/CURLOPT_CONV_FROM_UTF8_FUNCTION.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_CONV_FROM_UTF8_FUNCTION.3 rename to docs/libcurl/opts/CURLOPT_CONV_FROM_UTF8_FUNCTION.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_CONV_TO_NETWORK_FUNCTION.3 b/docs/libcurl/opts/CURLOPT_CONV_TO_NETWORK_FUNCTION.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_CONV_TO_NETWORK_FUNCTION.3 rename to docs/libcurl/opts/CURLOPT_CONV_TO_NETWORK_FUNCTION.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_COOKIE.3 b/docs/libcurl/opts/CURLOPT_COOKIE.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_COOKIE.3 rename to docs/libcurl/opts/CURLOPT_COOKIE.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_COOKIEFILE.3 b/docs/libcurl/opts/CURLOPT_COOKIEFILE.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_COOKIEFILE.3 rename to docs/libcurl/opts/CURLOPT_COOKIEFILE.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_COOKIEJAR.3 b/docs/libcurl/opts/CURLOPT_COOKIEJAR.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_COOKIEJAR.3 rename to docs/libcurl/opts/CURLOPT_COOKIEJAR.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_COOKIELIST.3 b/docs/libcurl/opts/CURLOPT_COOKIELIST.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_COOKIELIST.3 rename to docs/libcurl/opts/CURLOPT_COOKIELIST.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_COOKIESESSION.3 b/docs/libcurl/opts/CURLOPT_COOKIESESSION.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_COOKIESESSION.3 rename to docs/libcurl/opts/CURLOPT_COOKIESESSION.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_COPYPOSTFIELDS.3 b/docs/libcurl/opts/CURLOPT_COPYPOSTFIELDS.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_COPYPOSTFIELDS.3 rename to docs/libcurl/opts/CURLOPT_COPYPOSTFIELDS.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_CRLF.3 b/docs/libcurl/opts/CURLOPT_CRLF.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_CRLF.3 rename to docs/libcurl/opts/CURLOPT_CRLF.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_CRLFILE.3 b/docs/libcurl/opts/CURLOPT_CRLFILE.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_CRLFILE.3 rename to docs/libcurl/opts/CURLOPT_CRLFILE.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_CURLU.3 b/docs/libcurl/opts/CURLOPT_CURLU.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_CURLU.3 rename to docs/libcurl/opts/CURLOPT_CURLU.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_CUSTOMREQUEST.3 b/docs/libcurl/opts/CURLOPT_CUSTOMREQUEST.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_CUSTOMREQUEST.3 rename to docs/libcurl/opts/CURLOPT_CUSTOMREQUEST.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_DEBUGDATA.3 b/docs/libcurl/opts/CURLOPT_DEBUGDATA.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_DEBUGDATA.3 rename to docs/libcurl/opts/CURLOPT_DEBUGDATA.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_DEBUGFUNCTION.3 b/docs/libcurl/opts/CURLOPT_DEBUGFUNCTION.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_DEBUGFUNCTION.3 rename to docs/libcurl/opts/CURLOPT_DEBUGFUNCTION.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_DEFAULT_PROTOCOL.3 b/docs/libcurl/opts/CURLOPT_DEFAULT_PROTOCOL.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_DEFAULT_PROTOCOL.3 rename to docs/libcurl/opts/CURLOPT_DEFAULT_PROTOCOL.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_DIRLISTONLY.3 b/docs/libcurl/opts/CURLOPT_DIRLISTONLY.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_DIRLISTONLY.3 rename to docs/libcurl/opts/CURLOPT_DIRLISTONLY.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_DISALLOW_USERNAME_IN_URL.3 b/docs/libcurl/opts/CURLOPT_DISALLOW_USERNAME_IN_URL.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_DISALLOW_USERNAME_IN_URL.3 rename to docs/libcurl/opts/CURLOPT_DISALLOW_USERNAME_IN_URL.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_DNS_CACHE_TIMEOUT.3 b/docs/libcurl/opts/CURLOPT_DNS_CACHE_TIMEOUT.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_DNS_CACHE_TIMEOUT.3 rename to docs/libcurl/opts/CURLOPT_DNS_CACHE_TIMEOUT.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_DNS_INTERFACE.3 b/docs/libcurl/opts/CURLOPT_DNS_INTERFACE.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_DNS_INTERFACE.3 rename to docs/libcurl/opts/CURLOPT_DNS_INTERFACE.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_DNS_LOCAL_IP4.3 b/docs/libcurl/opts/CURLOPT_DNS_LOCAL_IP4.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_DNS_LOCAL_IP4.3 rename to docs/libcurl/opts/CURLOPT_DNS_LOCAL_IP4.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_DNS_LOCAL_IP6.3 b/docs/libcurl/opts/CURLOPT_DNS_LOCAL_IP6.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_DNS_LOCAL_IP6.3 rename to docs/libcurl/opts/CURLOPT_DNS_LOCAL_IP6.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_DNS_SERVERS.3 b/docs/libcurl/opts/CURLOPT_DNS_SERVERS.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_DNS_SERVERS.3 rename to docs/libcurl/opts/CURLOPT_DNS_SERVERS.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_DNS_SHUFFLE_ADDRESSES.3 b/docs/libcurl/opts/CURLOPT_DNS_SHUFFLE_ADDRESSES.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_DNS_SHUFFLE_ADDRESSES.3 rename to docs/libcurl/opts/CURLOPT_DNS_SHUFFLE_ADDRESSES.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_DNS_USE_GLOBAL_CACHE.3 b/docs/libcurl/opts/CURLOPT_DNS_USE_GLOBAL_CACHE.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_DNS_USE_GLOBAL_CACHE.3 rename to docs/libcurl/opts/CURLOPT_DNS_USE_GLOBAL_CACHE.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_DOH_SSL_VERIFYHOST.3 b/docs/libcurl/opts/CURLOPT_DOH_SSL_VERIFYHOST.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_DOH_SSL_VERIFYHOST.3 rename to docs/libcurl/opts/CURLOPT_DOH_SSL_VERIFYHOST.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_DOH_SSL_VERIFYPEER.3 b/docs/libcurl/opts/CURLOPT_DOH_SSL_VERIFYPEER.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_DOH_SSL_VERIFYPEER.3 rename to docs/libcurl/opts/CURLOPT_DOH_SSL_VERIFYPEER.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_DOH_SSL_VERIFYSTATUS.3 b/docs/libcurl/opts/CURLOPT_DOH_SSL_VERIFYSTATUS.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_DOH_SSL_VERIFYSTATUS.3 rename to docs/libcurl/opts/CURLOPT_DOH_SSL_VERIFYSTATUS.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_DOH_URL.3 b/docs/libcurl/opts/CURLOPT_DOH_URL.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_DOH_URL.3 rename to docs/libcurl/opts/CURLOPT_DOH_URL.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_EGDSOCKET.3 b/docs/libcurl/opts/CURLOPT_EGDSOCKET.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_EGDSOCKET.3 rename to docs/libcurl/opts/CURLOPT_EGDSOCKET.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_ERRORBUFFER.3 b/docs/libcurl/opts/CURLOPT_ERRORBUFFER.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_ERRORBUFFER.3 rename to docs/libcurl/opts/CURLOPT_ERRORBUFFER.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_EXPECT_100_TIMEOUT_MS.3 b/docs/libcurl/opts/CURLOPT_EXPECT_100_TIMEOUT_MS.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_EXPECT_100_TIMEOUT_MS.3 rename to docs/libcurl/opts/CURLOPT_EXPECT_100_TIMEOUT_MS.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_FAILONERROR.3 b/docs/libcurl/opts/CURLOPT_FAILONERROR.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_FAILONERROR.3 rename to docs/libcurl/opts/CURLOPT_FAILONERROR.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_FILETIME.3 b/docs/libcurl/opts/CURLOPT_FILETIME.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_FILETIME.3 rename to docs/libcurl/opts/CURLOPT_FILETIME.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_FNMATCH_DATA.3 b/docs/libcurl/opts/CURLOPT_FNMATCH_DATA.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_FNMATCH_DATA.3 rename to docs/libcurl/opts/CURLOPT_FNMATCH_DATA.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_FNMATCH_FUNCTION.3 b/docs/libcurl/opts/CURLOPT_FNMATCH_FUNCTION.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_FNMATCH_FUNCTION.3 rename to docs/libcurl/opts/CURLOPT_FNMATCH_FUNCTION.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_FOLLOWLOCATION.3 b/docs/libcurl/opts/CURLOPT_FOLLOWLOCATION.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_FOLLOWLOCATION.3 rename to docs/libcurl/opts/CURLOPT_FOLLOWLOCATION.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_FORBID_REUSE.3 b/docs/libcurl/opts/CURLOPT_FORBID_REUSE.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_FORBID_REUSE.3 rename to docs/libcurl/opts/CURLOPT_FORBID_REUSE.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_FRESH_CONNECT.3 b/docs/libcurl/opts/CURLOPT_FRESH_CONNECT.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_FRESH_CONNECT.3 rename to docs/libcurl/opts/CURLOPT_FRESH_CONNECT.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_FTPPORT.3 b/docs/libcurl/opts/CURLOPT_FTPPORT.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_FTPPORT.3 rename to docs/libcurl/opts/CURLOPT_FTPPORT.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_FTPSSLAUTH.3 b/docs/libcurl/opts/CURLOPT_FTPSSLAUTH.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_FTPSSLAUTH.3 rename to docs/libcurl/opts/CURLOPT_FTPSSLAUTH.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_FTP_ACCOUNT.3 b/docs/libcurl/opts/CURLOPT_FTP_ACCOUNT.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_FTP_ACCOUNT.3 rename to docs/libcurl/opts/CURLOPT_FTP_ACCOUNT.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_FTP_ALTERNATIVE_TO_USER.3 b/docs/libcurl/opts/CURLOPT_FTP_ALTERNATIVE_TO_USER.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_FTP_ALTERNATIVE_TO_USER.3 rename to docs/libcurl/opts/CURLOPT_FTP_ALTERNATIVE_TO_USER.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_FTP_CREATE_MISSING_DIRS.3 b/docs/libcurl/opts/CURLOPT_FTP_CREATE_MISSING_DIRS.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_FTP_CREATE_MISSING_DIRS.3 rename to docs/libcurl/opts/CURLOPT_FTP_CREATE_MISSING_DIRS.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_FTP_FILEMETHOD.3 b/docs/libcurl/opts/CURLOPT_FTP_FILEMETHOD.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_FTP_FILEMETHOD.3 rename to docs/libcurl/opts/CURLOPT_FTP_FILEMETHOD.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_FTP_RESPONSE_TIMEOUT.3 b/docs/libcurl/opts/CURLOPT_FTP_RESPONSE_TIMEOUT.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_FTP_RESPONSE_TIMEOUT.3 rename to docs/libcurl/opts/CURLOPT_FTP_RESPONSE_TIMEOUT.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_FTP_SKIP_PASV_IP.3 b/docs/libcurl/opts/CURLOPT_FTP_SKIP_PASV_IP.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_FTP_SKIP_PASV_IP.3 rename to docs/libcurl/opts/CURLOPT_FTP_SKIP_PASV_IP.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_FTP_SSL_CCC.3 b/docs/libcurl/opts/CURLOPT_FTP_SSL_CCC.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_FTP_SSL_CCC.3 rename to docs/libcurl/opts/CURLOPT_FTP_SSL_CCC.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_FTP_USE_EPRT.3 b/docs/libcurl/opts/CURLOPT_FTP_USE_EPRT.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_FTP_USE_EPRT.3 rename to docs/libcurl/opts/CURLOPT_FTP_USE_EPRT.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_FTP_USE_EPSV.3 b/docs/libcurl/opts/CURLOPT_FTP_USE_EPSV.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_FTP_USE_EPSV.3 rename to docs/libcurl/opts/CURLOPT_FTP_USE_EPSV.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_FTP_USE_PRET.3 b/docs/libcurl/opts/CURLOPT_FTP_USE_PRET.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_FTP_USE_PRET.3 rename to docs/libcurl/opts/CURLOPT_FTP_USE_PRET.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_GSSAPI_DELEGATION.3 b/docs/libcurl/opts/CURLOPT_GSSAPI_DELEGATION.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_GSSAPI_DELEGATION.3 rename to docs/libcurl/opts/CURLOPT_GSSAPI_DELEGATION.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_HAPPY_EYEBALLS_TIMEOUT_MS.3 b/docs/libcurl/opts/CURLOPT_HAPPY_EYEBALLS_TIMEOUT_MS.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_HAPPY_EYEBALLS_TIMEOUT_MS.3 rename to docs/libcurl/opts/CURLOPT_HAPPY_EYEBALLS_TIMEOUT_MS.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_HAPROXYPROTOCOL.3 b/docs/libcurl/opts/CURLOPT_HAPROXYPROTOCOL.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_HAPROXYPROTOCOL.3 rename to docs/libcurl/opts/CURLOPT_HAPROXYPROTOCOL.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_HEADER.3 b/docs/libcurl/opts/CURLOPT_HEADER.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_HEADER.3 rename to docs/libcurl/opts/CURLOPT_HEADER.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_HEADERDATA.3 b/docs/libcurl/opts/CURLOPT_HEADERDATA.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_HEADERDATA.3 rename to docs/libcurl/opts/CURLOPT_HEADERDATA.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_HEADERFUNCTION.3 b/docs/libcurl/opts/CURLOPT_HEADERFUNCTION.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_HEADERFUNCTION.3 rename to docs/libcurl/opts/CURLOPT_HEADERFUNCTION.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_HEADEROPT.3 b/docs/libcurl/opts/CURLOPT_HEADEROPT.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_HEADEROPT.3 rename to docs/libcurl/opts/CURLOPT_HEADEROPT.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_HSTS.3 b/docs/libcurl/opts/CURLOPT_HSTS.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_HSTS.3 rename to docs/libcurl/opts/CURLOPT_HSTS.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_HSTSREADDATA.3 b/docs/libcurl/opts/CURLOPT_HSTSREADDATA.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_HSTSREADDATA.3 rename to docs/libcurl/opts/CURLOPT_HSTSREADDATA.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_HSTSREADFUNCTION.3 b/docs/libcurl/opts/CURLOPT_HSTSREADFUNCTION.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_HSTSREADFUNCTION.3 rename to docs/libcurl/opts/CURLOPT_HSTSREADFUNCTION.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_HSTSWRITEDATA.3 b/docs/libcurl/opts/CURLOPT_HSTSWRITEDATA.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_HSTSWRITEDATA.3 rename to docs/libcurl/opts/CURLOPT_HSTSWRITEDATA.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_HSTSWRITEFUNCTION.3 b/docs/libcurl/opts/CURLOPT_HSTSWRITEFUNCTION.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_HSTSWRITEFUNCTION.3 rename to docs/libcurl/opts/CURLOPT_HSTSWRITEFUNCTION.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_HSTS_CTRL.3 b/docs/libcurl/opts/CURLOPT_HSTS_CTRL.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_HSTS_CTRL.3 rename to docs/libcurl/opts/CURLOPT_HSTS_CTRL.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_HTTP09_ALLOWED.3 b/docs/libcurl/opts/CURLOPT_HTTP09_ALLOWED.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_HTTP09_ALLOWED.3 rename to docs/libcurl/opts/CURLOPT_HTTP09_ALLOWED.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_HTTP200ALIASES.3 b/docs/libcurl/opts/CURLOPT_HTTP200ALIASES.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_HTTP200ALIASES.3 rename to docs/libcurl/opts/CURLOPT_HTTP200ALIASES.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_HTTPAUTH.3 b/docs/libcurl/opts/CURLOPT_HTTPAUTH.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_HTTPAUTH.3 rename to docs/libcurl/opts/CURLOPT_HTTPAUTH.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_HTTPGET.3 b/docs/libcurl/opts/CURLOPT_HTTPGET.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_HTTPGET.3 rename to docs/libcurl/opts/CURLOPT_HTTPGET.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_HTTPHEADER.3 b/docs/libcurl/opts/CURLOPT_HTTPHEADER.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_HTTPHEADER.3 rename to docs/libcurl/opts/CURLOPT_HTTPHEADER.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_HTTPPOST.3 b/docs/libcurl/opts/CURLOPT_HTTPPOST.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_HTTPPOST.3 rename to docs/libcurl/opts/CURLOPT_HTTPPOST.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_HTTPPROXYTUNNEL.3 b/docs/libcurl/opts/CURLOPT_HTTPPROXYTUNNEL.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_HTTPPROXYTUNNEL.3 rename to docs/libcurl/opts/CURLOPT_HTTPPROXYTUNNEL.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_HTTP_CONTENT_DECODING.3 b/docs/libcurl/opts/CURLOPT_HTTP_CONTENT_DECODING.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_HTTP_CONTENT_DECODING.3 rename to docs/libcurl/opts/CURLOPT_HTTP_CONTENT_DECODING.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_HTTP_TRANSFER_DECODING.3 b/docs/libcurl/opts/CURLOPT_HTTP_TRANSFER_DECODING.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_HTTP_TRANSFER_DECODING.3 rename to docs/libcurl/opts/CURLOPT_HTTP_TRANSFER_DECODING.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_HTTP_VERSION.3 b/docs/libcurl/opts/CURLOPT_HTTP_VERSION.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_HTTP_VERSION.3 rename to docs/libcurl/opts/CURLOPT_HTTP_VERSION.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_IGNORE_CONTENT_LENGTH.3 b/docs/libcurl/opts/CURLOPT_IGNORE_CONTENT_LENGTH.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_IGNORE_CONTENT_LENGTH.3 rename to docs/libcurl/opts/CURLOPT_IGNORE_CONTENT_LENGTH.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_INFILESIZE.3 b/docs/libcurl/opts/CURLOPT_INFILESIZE.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_INFILESIZE.3 rename to docs/libcurl/opts/CURLOPT_INFILESIZE.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_INFILESIZE_LARGE.3 b/docs/libcurl/opts/CURLOPT_INFILESIZE_LARGE.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_INFILESIZE_LARGE.3 rename to docs/libcurl/opts/CURLOPT_INFILESIZE_LARGE.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_INTERFACE.3 b/docs/libcurl/opts/CURLOPT_INTERFACE.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_INTERFACE.3 rename to docs/libcurl/opts/CURLOPT_INTERFACE.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_INTERLEAVEDATA.3 b/docs/libcurl/opts/CURLOPT_INTERLEAVEDATA.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_INTERLEAVEDATA.3 rename to docs/libcurl/opts/CURLOPT_INTERLEAVEDATA.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_INTERLEAVEFUNCTION.3 b/docs/libcurl/opts/CURLOPT_INTERLEAVEFUNCTION.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_INTERLEAVEFUNCTION.3 rename to docs/libcurl/opts/CURLOPT_INTERLEAVEFUNCTION.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_IOCTLDATA.3 b/docs/libcurl/opts/CURLOPT_IOCTLDATA.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_IOCTLDATA.3 rename to docs/libcurl/opts/CURLOPT_IOCTLDATA.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_IOCTLFUNCTION.3 b/docs/libcurl/opts/CURLOPT_IOCTLFUNCTION.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_IOCTLFUNCTION.3 rename to docs/libcurl/opts/CURLOPT_IOCTLFUNCTION.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_IPRESOLVE.3 b/docs/libcurl/opts/CURLOPT_IPRESOLVE.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_IPRESOLVE.3 rename to docs/libcurl/opts/CURLOPT_IPRESOLVE.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_ISSUERCERT.3 b/docs/libcurl/opts/CURLOPT_ISSUERCERT.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_ISSUERCERT.3 rename to docs/libcurl/opts/CURLOPT_ISSUERCERT.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_ISSUERCERT_BLOB.3 b/docs/libcurl/opts/CURLOPT_ISSUERCERT_BLOB.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_ISSUERCERT_BLOB.3 rename to docs/libcurl/opts/CURLOPT_ISSUERCERT_BLOB.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_KEEP_SENDING_ON_ERROR.3 b/docs/libcurl/opts/CURLOPT_KEEP_SENDING_ON_ERROR.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_KEEP_SENDING_ON_ERROR.3 rename to docs/libcurl/opts/CURLOPT_KEEP_SENDING_ON_ERROR.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_KEYPASSWD.3 b/docs/libcurl/opts/CURLOPT_KEYPASSWD.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_KEYPASSWD.3 rename to docs/libcurl/opts/CURLOPT_KEYPASSWD.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_KRBLEVEL.3 b/docs/libcurl/opts/CURLOPT_KRBLEVEL.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_KRBLEVEL.3 rename to docs/libcurl/opts/CURLOPT_KRBLEVEL.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_LOCALPORT.3 b/docs/libcurl/opts/CURLOPT_LOCALPORT.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_LOCALPORT.3 rename to docs/libcurl/opts/CURLOPT_LOCALPORT.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_LOCALPORTRANGE.3 b/docs/libcurl/opts/CURLOPT_LOCALPORTRANGE.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_LOCALPORTRANGE.3 rename to docs/libcurl/opts/CURLOPT_LOCALPORTRANGE.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_LOGIN_OPTIONS.3 b/docs/libcurl/opts/CURLOPT_LOGIN_OPTIONS.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_LOGIN_OPTIONS.3 rename to docs/libcurl/opts/CURLOPT_LOGIN_OPTIONS.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_LOW_SPEED_LIMIT.3 b/docs/libcurl/opts/CURLOPT_LOW_SPEED_LIMIT.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_LOW_SPEED_LIMIT.3 rename to docs/libcurl/opts/CURLOPT_LOW_SPEED_LIMIT.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_LOW_SPEED_TIME.3 b/docs/libcurl/opts/CURLOPT_LOW_SPEED_TIME.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_LOW_SPEED_TIME.3 rename to docs/libcurl/opts/CURLOPT_LOW_SPEED_TIME.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_MAIL_AUTH.3 b/docs/libcurl/opts/CURLOPT_MAIL_AUTH.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_MAIL_AUTH.3 rename to docs/libcurl/opts/CURLOPT_MAIL_AUTH.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_MAIL_FROM.3 b/docs/libcurl/opts/CURLOPT_MAIL_FROM.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_MAIL_FROM.3 rename to docs/libcurl/opts/CURLOPT_MAIL_FROM.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_MAIL_RCPT.3 b/docs/libcurl/opts/CURLOPT_MAIL_RCPT.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_MAIL_RCPT.3 rename to docs/libcurl/opts/CURLOPT_MAIL_RCPT.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_MAIL_RCPT_ALLLOWFAILS.3 b/docs/libcurl/opts/CURLOPT_MAIL_RCPT_ALLLOWFAILS.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_MAIL_RCPT_ALLLOWFAILS.3 rename to docs/libcurl/opts/CURLOPT_MAIL_RCPT_ALLLOWFAILS.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_MAXAGE_CONN.3 b/docs/libcurl/opts/CURLOPT_MAXAGE_CONN.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_MAXAGE_CONN.3 rename to docs/libcurl/opts/CURLOPT_MAXAGE_CONN.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_MAXCONNECTS.3 b/docs/libcurl/opts/CURLOPT_MAXCONNECTS.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_MAXCONNECTS.3 rename to docs/libcurl/opts/CURLOPT_MAXCONNECTS.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_MAXFILESIZE.3 b/docs/libcurl/opts/CURLOPT_MAXFILESIZE.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_MAXFILESIZE.3 rename to docs/libcurl/opts/CURLOPT_MAXFILESIZE.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_MAXFILESIZE_LARGE.3 b/docs/libcurl/opts/CURLOPT_MAXFILESIZE_LARGE.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_MAXFILESIZE_LARGE.3 rename to docs/libcurl/opts/CURLOPT_MAXFILESIZE_LARGE.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_MAXREDIRS.3 b/docs/libcurl/opts/CURLOPT_MAXREDIRS.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_MAXREDIRS.3 rename to docs/libcurl/opts/CURLOPT_MAXREDIRS.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_MAX_RECV_SPEED_LARGE.3 b/docs/libcurl/opts/CURLOPT_MAX_RECV_SPEED_LARGE.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_MAX_RECV_SPEED_LARGE.3 rename to docs/libcurl/opts/CURLOPT_MAX_RECV_SPEED_LARGE.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_MAX_SEND_SPEED_LARGE.3 b/docs/libcurl/opts/CURLOPT_MAX_SEND_SPEED_LARGE.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_MAX_SEND_SPEED_LARGE.3 rename to docs/libcurl/opts/CURLOPT_MAX_SEND_SPEED_LARGE.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_MIMEPOST.3 b/docs/libcurl/opts/CURLOPT_MIMEPOST.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_MIMEPOST.3 rename to docs/libcurl/opts/CURLOPT_MIMEPOST.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_NETRC.3 b/docs/libcurl/opts/CURLOPT_NETRC.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_NETRC.3 rename to docs/libcurl/opts/CURLOPT_NETRC.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_NETRC_FILE.3 b/docs/libcurl/opts/CURLOPT_NETRC_FILE.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_NETRC_FILE.3 rename to docs/libcurl/opts/CURLOPT_NETRC_FILE.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_NEW_DIRECTORY_PERMS.3 b/docs/libcurl/opts/CURLOPT_NEW_DIRECTORY_PERMS.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_NEW_DIRECTORY_PERMS.3 rename to docs/libcurl/opts/CURLOPT_NEW_DIRECTORY_PERMS.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_NEW_FILE_PERMS.3 b/docs/libcurl/opts/CURLOPT_NEW_FILE_PERMS.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_NEW_FILE_PERMS.3 rename to docs/libcurl/opts/CURLOPT_NEW_FILE_PERMS.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_NOBODY.3 b/docs/libcurl/opts/CURLOPT_NOBODY.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_NOBODY.3 rename to docs/libcurl/opts/CURLOPT_NOBODY.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_NOPROGRESS.3 b/docs/libcurl/opts/CURLOPT_NOPROGRESS.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_NOPROGRESS.3 rename to docs/libcurl/opts/CURLOPT_NOPROGRESS.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_NOPROXY.3 b/docs/libcurl/opts/CURLOPT_NOPROXY.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_NOPROXY.3 rename to docs/libcurl/opts/CURLOPT_NOPROXY.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_NOSIGNAL.3 b/docs/libcurl/opts/CURLOPT_NOSIGNAL.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_NOSIGNAL.3 rename to docs/libcurl/opts/CURLOPT_NOSIGNAL.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_OPENSOCKETDATA.3 b/docs/libcurl/opts/CURLOPT_OPENSOCKETDATA.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_OPENSOCKETDATA.3 rename to docs/libcurl/opts/CURLOPT_OPENSOCKETDATA.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_OPENSOCKETFUNCTION.3 b/docs/libcurl/opts/CURLOPT_OPENSOCKETFUNCTION.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_OPENSOCKETFUNCTION.3 rename to docs/libcurl/opts/CURLOPT_OPENSOCKETFUNCTION.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_PASSWORD.3 b/docs/libcurl/opts/CURLOPT_PASSWORD.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_PASSWORD.3 rename to docs/libcurl/opts/CURLOPT_PASSWORD.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_PATH_AS_IS.3 b/docs/libcurl/opts/CURLOPT_PATH_AS_IS.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_PATH_AS_IS.3 rename to docs/libcurl/opts/CURLOPT_PATH_AS_IS.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_PINNEDPUBLICKEY.3 b/docs/libcurl/opts/CURLOPT_PINNEDPUBLICKEY.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_PINNEDPUBLICKEY.3 rename to docs/libcurl/opts/CURLOPT_PINNEDPUBLICKEY.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_PIPEWAIT.3 b/docs/libcurl/opts/CURLOPT_PIPEWAIT.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_PIPEWAIT.3 rename to docs/libcurl/opts/CURLOPT_PIPEWAIT.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_PORT.3 b/docs/libcurl/opts/CURLOPT_PORT.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_PORT.3 rename to docs/libcurl/opts/CURLOPT_PORT.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_POST.3 b/docs/libcurl/opts/CURLOPT_POST.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_POST.3 rename to docs/libcurl/opts/CURLOPT_POST.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_POSTFIELDS.3 b/docs/libcurl/opts/CURLOPT_POSTFIELDS.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_POSTFIELDS.3 rename to docs/libcurl/opts/CURLOPT_POSTFIELDS.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_POSTFIELDSIZE.3 b/docs/libcurl/opts/CURLOPT_POSTFIELDSIZE.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_POSTFIELDSIZE.3 rename to docs/libcurl/opts/CURLOPT_POSTFIELDSIZE.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_POSTFIELDSIZE_LARGE.3 b/docs/libcurl/opts/CURLOPT_POSTFIELDSIZE_LARGE.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_POSTFIELDSIZE_LARGE.3 rename to docs/libcurl/opts/CURLOPT_POSTFIELDSIZE_LARGE.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_POSTQUOTE.3 b/docs/libcurl/opts/CURLOPT_POSTQUOTE.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_POSTQUOTE.3 rename to docs/libcurl/opts/CURLOPT_POSTQUOTE.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_POSTREDIR.3 b/docs/libcurl/opts/CURLOPT_POSTREDIR.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_POSTREDIR.3 rename to docs/libcurl/opts/CURLOPT_POSTREDIR.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_PREQUOTE.3 b/docs/libcurl/opts/CURLOPT_PREQUOTE.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_PREQUOTE.3 rename to docs/libcurl/opts/CURLOPT_PREQUOTE.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_PRE_PROXY.3 b/docs/libcurl/opts/CURLOPT_PRE_PROXY.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_PRE_PROXY.3 rename to docs/libcurl/opts/CURLOPT_PRE_PROXY.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_PRIVATE.3 b/docs/libcurl/opts/CURLOPT_PRIVATE.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_PRIVATE.3 rename to docs/libcurl/opts/CURLOPT_PRIVATE.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_PROGRESSDATA.3 b/docs/libcurl/opts/CURLOPT_PROGRESSDATA.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_PROGRESSDATA.3 rename to docs/libcurl/opts/CURLOPT_PROGRESSDATA.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_PROGRESSFUNCTION.3 b/docs/libcurl/opts/CURLOPT_PROGRESSFUNCTION.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_PROGRESSFUNCTION.3 rename to docs/libcurl/opts/CURLOPT_PROGRESSFUNCTION.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_PROTOCOLS.3 b/docs/libcurl/opts/CURLOPT_PROTOCOLS.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_PROTOCOLS.3 rename to docs/libcurl/opts/CURLOPT_PROTOCOLS.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_PROXY.3 b/docs/libcurl/opts/CURLOPT_PROXY.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_PROXY.3 rename to docs/libcurl/opts/CURLOPT_PROXY.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_PROXYAUTH.3 b/docs/libcurl/opts/CURLOPT_PROXYAUTH.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_PROXYAUTH.3 rename to docs/libcurl/opts/CURLOPT_PROXYAUTH.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_PROXYHEADER.3 b/docs/libcurl/opts/CURLOPT_PROXYHEADER.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_PROXYHEADER.3 rename to docs/libcurl/opts/CURLOPT_PROXYHEADER.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_PROXYPASSWORD.3 b/docs/libcurl/opts/CURLOPT_PROXYPASSWORD.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_PROXYPASSWORD.3 rename to docs/libcurl/opts/CURLOPT_PROXYPASSWORD.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_PROXYPORT.3 b/docs/libcurl/opts/CURLOPT_PROXYPORT.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_PROXYPORT.3 rename to docs/libcurl/opts/CURLOPT_PROXYPORT.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_PROXYTYPE.3 b/docs/libcurl/opts/CURLOPT_PROXYTYPE.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_PROXYTYPE.3 rename to docs/libcurl/opts/CURLOPT_PROXYTYPE.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_PROXYUSERNAME.3 b/docs/libcurl/opts/CURLOPT_PROXYUSERNAME.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_PROXYUSERNAME.3 rename to docs/libcurl/opts/CURLOPT_PROXYUSERNAME.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_PROXYUSERPWD.3 b/docs/libcurl/opts/CURLOPT_PROXYUSERPWD.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_PROXYUSERPWD.3 rename to docs/libcurl/opts/CURLOPT_PROXYUSERPWD.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_PROXY_CAINFO.3 b/docs/libcurl/opts/CURLOPT_PROXY_CAINFO.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_PROXY_CAINFO.3 rename to docs/libcurl/opts/CURLOPT_PROXY_CAINFO.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_PROXY_CAINFO_BLOB.3 b/docs/libcurl/opts/CURLOPT_PROXY_CAINFO_BLOB.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_PROXY_CAINFO_BLOB.3 rename to docs/libcurl/opts/CURLOPT_PROXY_CAINFO_BLOB.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_PROXY_CAPATH.3 b/docs/libcurl/opts/CURLOPT_PROXY_CAPATH.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_PROXY_CAPATH.3 rename to docs/libcurl/opts/CURLOPT_PROXY_CAPATH.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_PROXY_CRLFILE.3 b/docs/libcurl/opts/CURLOPT_PROXY_CRLFILE.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_PROXY_CRLFILE.3 rename to docs/libcurl/opts/CURLOPT_PROXY_CRLFILE.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_PROXY_ISSUERCERT.3 b/docs/libcurl/opts/CURLOPT_PROXY_ISSUERCERT.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_PROXY_ISSUERCERT.3 rename to docs/libcurl/opts/CURLOPT_PROXY_ISSUERCERT.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_PROXY_ISSUERCERT_BLOB.3 b/docs/libcurl/opts/CURLOPT_PROXY_ISSUERCERT_BLOB.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_PROXY_ISSUERCERT_BLOB.3 rename to docs/libcurl/opts/CURLOPT_PROXY_ISSUERCERT_BLOB.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_PROXY_KEYPASSWD.3 b/docs/libcurl/opts/CURLOPT_PROXY_KEYPASSWD.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_PROXY_KEYPASSWD.3 rename to docs/libcurl/opts/CURLOPT_PROXY_KEYPASSWD.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_PROXY_PINNEDPUBLICKEY.3 b/docs/libcurl/opts/CURLOPT_PROXY_PINNEDPUBLICKEY.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_PROXY_PINNEDPUBLICKEY.3 rename to docs/libcurl/opts/CURLOPT_PROXY_PINNEDPUBLICKEY.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_PROXY_SERVICE_NAME.3 b/docs/libcurl/opts/CURLOPT_PROXY_SERVICE_NAME.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_PROXY_SERVICE_NAME.3 rename to docs/libcurl/opts/CURLOPT_PROXY_SERVICE_NAME.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_PROXY_SSLCERT.3 b/docs/libcurl/opts/CURLOPT_PROXY_SSLCERT.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_PROXY_SSLCERT.3 rename to docs/libcurl/opts/CURLOPT_PROXY_SSLCERT.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_PROXY_SSLCERTTYPE.3 b/docs/libcurl/opts/CURLOPT_PROXY_SSLCERTTYPE.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_PROXY_SSLCERTTYPE.3 rename to docs/libcurl/opts/CURLOPT_PROXY_SSLCERTTYPE.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_PROXY_SSLCERT_BLOB.3 b/docs/libcurl/opts/CURLOPT_PROXY_SSLCERT_BLOB.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_PROXY_SSLCERT_BLOB.3 rename to docs/libcurl/opts/CURLOPT_PROXY_SSLCERT_BLOB.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_PROXY_SSLKEY.3 b/docs/libcurl/opts/CURLOPT_PROXY_SSLKEY.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_PROXY_SSLKEY.3 rename to docs/libcurl/opts/CURLOPT_PROXY_SSLKEY.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_PROXY_SSLKEYTYPE.3 b/docs/libcurl/opts/CURLOPT_PROXY_SSLKEYTYPE.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_PROXY_SSLKEYTYPE.3 rename to docs/libcurl/opts/CURLOPT_PROXY_SSLKEYTYPE.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_PROXY_SSLKEY_BLOB.3 b/docs/libcurl/opts/CURLOPT_PROXY_SSLKEY_BLOB.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_PROXY_SSLKEY_BLOB.3 rename to docs/libcurl/opts/CURLOPT_PROXY_SSLKEY_BLOB.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_PROXY_SSLVERSION.3 b/docs/libcurl/opts/CURLOPT_PROXY_SSLVERSION.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_PROXY_SSLVERSION.3 rename to docs/libcurl/opts/CURLOPT_PROXY_SSLVERSION.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_PROXY_SSL_CIPHER_LIST.3 b/docs/libcurl/opts/CURLOPT_PROXY_SSL_CIPHER_LIST.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_PROXY_SSL_CIPHER_LIST.3 rename to docs/libcurl/opts/CURLOPT_PROXY_SSL_CIPHER_LIST.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_PROXY_SSL_OPTIONS.3 b/docs/libcurl/opts/CURLOPT_PROXY_SSL_OPTIONS.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_PROXY_SSL_OPTIONS.3 rename to docs/libcurl/opts/CURLOPT_PROXY_SSL_OPTIONS.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_PROXY_SSL_VERIFYHOST.3 b/docs/libcurl/opts/CURLOPT_PROXY_SSL_VERIFYHOST.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_PROXY_SSL_VERIFYHOST.3 rename to docs/libcurl/opts/CURLOPT_PROXY_SSL_VERIFYHOST.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_PROXY_SSL_VERIFYPEER.3 b/docs/libcurl/opts/CURLOPT_PROXY_SSL_VERIFYPEER.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_PROXY_SSL_VERIFYPEER.3 rename to docs/libcurl/opts/CURLOPT_PROXY_SSL_VERIFYPEER.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_PROXY_TLS13_CIPHERS.3 b/docs/libcurl/opts/CURLOPT_PROXY_TLS13_CIPHERS.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_PROXY_TLS13_CIPHERS.3 rename to docs/libcurl/opts/CURLOPT_PROXY_TLS13_CIPHERS.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_PROXY_TLSAUTH_PASSWORD.3 b/docs/libcurl/opts/CURLOPT_PROXY_TLSAUTH_PASSWORD.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_PROXY_TLSAUTH_PASSWORD.3 rename to docs/libcurl/opts/CURLOPT_PROXY_TLSAUTH_PASSWORD.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_PROXY_TLSAUTH_TYPE.3 b/docs/libcurl/opts/CURLOPT_PROXY_TLSAUTH_TYPE.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_PROXY_TLSAUTH_TYPE.3 rename to docs/libcurl/opts/CURLOPT_PROXY_TLSAUTH_TYPE.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_PROXY_TLSAUTH_USERNAME.3 b/docs/libcurl/opts/CURLOPT_PROXY_TLSAUTH_USERNAME.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_PROXY_TLSAUTH_USERNAME.3 rename to docs/libcurl/opts/CURLOPT_PROXY_TLSAUTH_USERNAME.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_PROXY_TRANSFER_MODE.3 b/docs/libcurl/opts/CURLOPT_PROXY_TRANSFER_MODE.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_PROXY_TRANSFER_MODE.3 rename to docs/libcurl/opts/CURLOPT_PROXY_TRANSFER_MODE.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_PUT.3 b/docs/libcurl/opts/CURLOPT_PUT.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_PUT.3 rename to docs/libcurl/opts/CURLOPT_PUT.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_QUOTE.3 b/docs/libcurl/opts/CURLOPT_QUOTE.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_QUOTE.3 rename to docs/libcurl/opts/CURLOPT_QUOTE.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_RANDOM_FILE.3 b/docs/libcurl/opts/CURLOPT_RANDOM_FILE.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_RANDOM_FILE.3 rename to docs/libcurl/opts/CURLOPT_RANDOM_FILE.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_RANGE.3 b/docs/libcurl/opts/CURLOPT_RANGE.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_RANGE.3 rename to docs/libcurl/opts/CURLOPT_RANGE.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_READDATA.3 b/docs/libcurl/opts/CURLOPT_READDATA.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_READDATA.3 rename to docs/libcurl/opts/CURLOPT_READDATA.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_READFUNCTION.3 b/docs/libcurl/opts/CURLOPT_READFUNCTION.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_READFUNCTION.3 rename to docs/libcurl/opts/CURLOPT_READFUNCTION.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_REDIR_PROTOCOLS.3 b/docs/libcurl/opts/CURLOPT_REDIR_PROTOCOLS.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_REDIR_PROTOCOLS.3 rename to docs/libcurl/opts/CURLOPT_REDIR_PROTOCOLS.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_REFERER.3 b/docs/libcurl/opts/CURLOPT_REFERER.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_REFERER.3 rename to docs/libcurl/opts/CURLOPT_REFERER.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_REQUEST_TARGET.3 b/docs/libcurl/opts/CURLOPT_REQUEST_TARGET.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_REQUEST_TARGET.3 rename to docs/libcurl/opts/CURLOPT_REQUEST_TARGET.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_RESOLVE.3 b/docs/libcurl/opts/CURLOPT_RESOLVE.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_RESOLVE.3 rename to docs/libcurl/opts/CURLOPT_RESOLVE.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_RESOLVER_START_DATA.3 b/docs/libcurl/opts/CURLOPT_RESOLVER_START_DATA.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_RESOLVER_START_DATA.3 rename to docs/libcurl/opts/CURLOPT_RESOLVER_START_DATA.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_RESOLVER_START_FUNCTION.3 b/docs/libcurl/opts/CURLOPT_RESOLVER_START_FUNCTION.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_RESOLVER_START_FUNCTION.3 rename to docs/libcurl/opts/CURLOPT_RESOLVER_START_FUNCTION.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_RESUME_FROM.3 b/docs/libcurl/opts/CURLOPT_RESUME_FROM.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_RESUME_FROM.3 rename to docs/libcurl/opts/CURLOPT_RESUME_FROM.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_RESUME_FROM_LARGE.3 b/docs/libcurl/opts/CURLOPT_RESUME_FROM_LARGE.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_RESUME_FROM_LARGE.3 rename to docs/libcurl/opts/CURLOPT_RESUME_FROM_LARGE.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_RTSP_CLIENT_CSEQ.3 b/docs/libcurl/opts/CURLOPT_RTSP_CLIENT_CSEQ.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_RTSP_CLIENT_CSEQ.3 rename to docs/libcurl/opts/CURLOPT_RTSP_CLIENT_CSEQ.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_RTSP_REQUEST.3 b/docs/libcurl/opts/CURLOPT_RTSP_REQUEST.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_RTSP_REQUEST.3 rename to docs/libcurl/opts/CURLOPT_RTSP_REQUEST.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_RTSP_SERVER_CSEQ.3 b/docs/libcurl/opts/CURLOPT_RTSP_SERVER_CSEQ.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_RTSP_SERVER_CSEQ.3 rename to docs/libcurl/opts/CURLOPT_RTSP_SERVER_CSEQ.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_RTSP_SESSION_ID.3 b/docs/libcurl/opts/CURLOPT_RTSP_SESSION_ID.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_RTSP_SESSION_ID.3 rename to docs/libcurl/opts/CURLOPT_RTSP_SESSION_ID.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_RTSP_STREAM_URI.3 b/docs/libcurl/opts/CURLOPT_RTSP_STREAM_URI.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_RTSP_STREAM_URI.3 rename to docs/libcurl/opts/CURLOPT_RTSP_STREAM_URI.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_RTSP_TRANSPORT.3 b/docs/libcurl/opts/CURLOPT_RTSP_TRANSPORT.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_RTSP_TRANSPORT.3 rename to docs/libcurl/opts/CURLOPT_RTSP_TRANSPORT.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_SASL_AUTHZID.3 b/docs/libcurl/opts/CURLOPT_SASL_AUTHZID.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_SASL_AUTHZID.3 rename to docs/libcurl/opts/CURLOPT_SASL_AUTHZID.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_SASL_IR.3 b/docs/libcurl/opts/CURLOPT_SASL_IR.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_SASL_IR.3 rename to docs/libcurl/opts/CURLOPT_SASL_IR.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_SEEKDATA.3 b/docs/libcurl/opts/CURLOPT_SEEKDATA.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_SEEKDATA.3 rename to docs/libcurl/opts/CURLOPT_SEEKDATA.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_SEEKFUNCTION.3 b/docs/libcurl/opts/CURLOPT_SEEKFUNCTION.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_SEEKFUNCTION.3 rename to docs/libcurl/opts/CURLOPT_SEEKFUNCTION.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_SERVICE_NAME.3 b/docs/libcurl/opts/CURLOPT_SERVICE_NAME.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_SERVICE_NAME.3 rename to docs/libcurl/opts/CURLOPT_SERVICE_NAME.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_SHARE.3 b/docs/libcurl/opts/CURLOPT_SHARE.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_SHARE.3 rename to docs/libcurl/opts/CURLOPT_SHARE.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_SOCKOPTDATA.3 b/docs/libcurl/opts/CURLOPT_SOCKOPTDATA.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_SOCKOPTDATA.3 rename to docs/libcurl/opts/CURLOPT_SOCKOPTDATA.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_SOCKOPTFUNCTION.3 b/docs/libcurl/opts/CURLOPT_SOCKOPTFUNCTION.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_SOCKOPTFUNCTION.3 rename to docs/libcurl/opts/CURLOPT_SOCKOPTFUNCTION.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_SOCKS5_AUTH.3 b/docs/libcurl/opts/CURLOPT_SOCKS5_AUTH.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_SOCKS5_AUTH.3 rename to docs/libcurl/opts/CURLOPT_SOCKS5_AUTH.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_SOCKS5_GSSAPI_NEC.3 b/docs/libcurl/opts/CURLOPT_SOCKS5_GSSAPI_NEC.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_SOCKS5_GSSAPI_NEC.3 rename to docs/libcurl/opts/CURLOPT_SOCKS5_GSSAPI_NEC.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_SOCKS5_GSSAPI_SERVICE.3 b/docs/libcurl/opts/CURLOPT_SOCKS5_GSSAPI_SERVICE.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_SOCKS5_GSSAPI_SERVICE.3 rename to docs/libcurl/opts/CURLOPT_SOCKS5_GSSAPI_SERVICE.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_SSH_AUTH_TYPES.3 b/docs/libcurl/opts/CURLOPT_SSH_AUTH_TYPES.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_SSH_AUTH_TYPES.3 rename to docs/libcurl/opts/CURLOPT_SSH_AUTH_TYPES.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_SSH_COMPRESSION.3 b/docs/libcurl/opts/CURLOPT_SSH_COMPRESSION.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_SSH_COMPRESSION.3 rename to docs/libcurl/opts/CURLOPT_SSH_COMPRESSION.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_SSH_HOST_PUBLIC_KEY_MD5.3 b/docs/libcurl/opts/CURLOPT_SSH_HOST_PUBLIC_KEY_MD5.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_SSH_HOST_PUBLIC_KEY_MD5.3 rename to docs/libcurl/opts/CURLOPT_SSH_HOST_PUBLIC_KEY_MD5.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_SSH_KEYDATA.3 b/docs/libcurl/opts/CURLOPT_SSH_KEYDATA.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_SSH_KEYDATA.3 rename to docs/libcurl/opts/CURLOPT_SSH_KEYDATA.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_SSH_KEYFUNCTION.3 b/docs/libcurl/opts/CURLOPT_SSH_KEYFUNCTION.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_SSH_KEYFUNCTION.3 rename to docs/libcurl/opts/CURLOPT_SSH_KEYFUNCTION.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_SSH_KNOWNHOSTS.3 b/docs/libcurl/opts/CURLOPT_SSH_KNOWNHOSTS.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_SSH_KNOWNHOSTS.3 rename to docs/libcurl/opts/CURLOPT_SSH_KNOWNHOSTS.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_SSH_PRIVATE_KEYFILE.3 b/docs/libcurl/opts/CURLOPT_SSH_PRIVATE_KEYFILE.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_SSH_PRIVATE_KEYFILE.3 rename to docs/libcurl/opts/CURLOPT_SSH_PRIVATE_KEYFILE.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_SSH_PUBLIC_KEYFILE.3 b/docs/libcurl/opts/CURLOPT_SSH_PUBLIC_KEYFILE.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_SSH_PUBLIC_KEYFILE.3 rename to docs/libcurl/opts/CURLOPT_SSH_PUBLIC_KEYFILE.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_SSLCERT.3 b/docs/libcurl/opts/CURLOPT_SSLCERT.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_SSLCERT.3 rename to docs/libcurl/opts/CURLOPT_SSLCERT.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_SSLCERTTYPE.3 b/docs/libcurl/opts/CURLOPT_SSLCERTTYPE.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_SSLCERTTYPE.3 rename to docs/libcurl/opts/CURLOPT_SSLCERTTYPE.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_SSLCERT_BLOB.3 b/docs/libcurl/opts/CURLOPT_SSLCERT_BLOB.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_SSLCERT_BLOB.3 rename to docs/libcurl/opts/CURLOPT_SSLCERT_BLOB.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_SSLENGINE.3 b/docs/libcurl/opts/CURLOPT_SSLENGINE.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_SSLENGINE.3 rename to docs/libcurl/opts/CURLOPT_SSLENGINE.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_SSLENGINE_DEFAULT.3 b/docs/libcurl/opts/CURLOPT_SSLENGINE_DEFAULT.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_SSLENGINE_DEFAULT.3 rename to docs/libcurl/opts/CURLOPT_SSLENGINE_DEFAULT.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_SSLKEY.3 b/docs/libcurl/opts/CURLOPT_SSLKEY.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_SSLKEY.3 rename to docs/libcurl/opts/CURLOPT_SSLKEY.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_SSLKEYTYPE.3 b/docs/libcurl/opts/CURLOPT_SSLKEYTYPE.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_SSLKEYTYPE.3 rename to docs/libcurl/opts/CURLOPT_SSLKEYTYPE.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_SSLKEY_BLOB.3 b/docs/libcurl/opts/CURLOPT_SSLKEY_BLOB.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_SSLKEY_BLOB.3 rename to docs/libcurl/opts/CURLOPT_SSLKEY_BLOB.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_SSLVERSION.3 b/docs/libcurl/opts/CURLOPT_SSLVERSION.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_SSLVERSION.3 rename to docs/libcurl/opts/CURLOPT_SSLVERSION.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_SSL_CIPHER_LIST.3 b/docs/libcurl/opts/CURLOPT_SSL_CIPHER_LIST.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_SSL_CIPHER_LIST.3 rename to docs/libcurl/opts/CURLOPT_SSL_CIPHER_LIST.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_SSL_CTX_DATA.3 b/docs/libcurl/opts/CURLOPT_SSL_CTX_DATA.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_SSL_CTX_DATA.3 rename to docs/libcurl/opts/CURLOPT_SSL_CTX_DATA.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_SSL_CTX_FUNCTION.3 b/docs/libcurl/opts/CURLOPT_SSL_CTX_FUNCTION.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_SSL_CTX_FUNCTION.3 rename to docs/libcurl/opts/CURLOPT_SSL_CTX_FUNCTION.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_SSL_EC_CURVES.3 b/docs/libcurl/opts/CURLOPT_SSL_EC_CURVES.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_SSL_EC_CURVES.3 rename to docs/libcurl/opts/CURLOPT_SSL_EC_CURVES.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_SSL_ENABLE_ALPN.3 b/docs/libcurl/opts/CURLOPT_SSL_ENABLE_ALPN.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_SSL_ENABLE_ALPN.3 rename to docs/libcurl/opts/CURLOPT_SSL_ENABLE_ALPN.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_SSL_ENABLE_NPN.3 b/docs/libcurl/opts/CURLOPT_SSL_ENABLE_NPN.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_SSL_ENABLE_NPN.3 rename to docs/libcurl/opts/CURLOPT_SSL_ENABLE_NPN.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_SSL_FALSESTART.3 b/docs/libcurl/opts/CURLOPT_SSL_FALSESTART.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_SSL_FALSESTART.3 rename to docs/libcurl/opts/CURLOPT_SSL_FALSESTART.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_SSL_OPTIONS.3 b/docs/libcurl/opts/CURLOPT_SSL_OPTIONS.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_SSL_OPTIONS.3 rename to docs/libcurl/opts/CURLOPT_SSL_OPTIONS.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_SSL_SESSIONID_CACHE.3 b/docs/libcurl/opts/CURLOPT_SSL_SESSIONID_CACHE.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_SSL_SESSIONID_CACHE.3 rename to docs/libcurl/opts/CURLOPT_SSL_SESSIONID_CACHE.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_SSL_VERIFYHOST.3 b/docs/libcurl/opts/CURLOPT_SSL_VERIFYHOST.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_SSL_VERIFYHOST.3 rename to docs/libcurl/opts/CURLOPT_SSL_VERIFYHOST.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_SSL_VERIFYPEER.3 b/docs/libcurl/opts/CURLOPT_SSL_VERIFYPEER.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_SSL_VERIFYPEER.3 rename to docs/libcurl/opts/CURLOPT_SSL_VERIFYPEER.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_SSL_VERIFYSTATUS.3 b/docs/libcurl/opts/CURLOPT_SSL_VERIFYSTATUS.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_SSL_VERIFYSTATUS.3 rename to docs/libcurl/opts/CURLOPT_SSL_VERIFYSTATUS.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_STDERR.3 b/docs/libcurl/opts/CURLOPT_STDERR.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_STDERR.3 rename to docs/libcurl/opts/CURLOPT_STDERR.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_STREAM_DEPENDS.3 b/docs/libcurl/opts/CURLOPT_STREAM_DEPENDS.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_STREAM_DEPENDS.3 rename to docs/libcurl/opts/CURLOPT_STREAM_DEPENDS.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_STREAM_DEPENDS_E.3 b/docs/libcurl/opts/CURLOPT_STREAM_DEPENDS_E.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_STREAM_DEPENDS_E.3 rename to docs/libcurl/opts/CURLOPT_STREAM_DEPENDS_E.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_STREAM_WEIGHT.3 b/docs/libcurl/opts/CURLOPT_STREAM_WEIGHT.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_STREAM_WEIGHT.3 rename to docs/libcurl/opts/CURLOPT_STREAM_WEIGHT.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_SUPPRESS_CONNECT_HEADERS.3 b/docs/libcurl/opts/CURLOPT_SUPPRESS_CONNECT_HEADERS.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_SUPPRESS_CONNECT_HEADERS.3 rename to docs/libcurl/opts/CURLOPT_SUPPRESS_CONNECT_HEADERS.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_TCP_FASTOPEN.3 b/docs/libcurl/opts/CURLOPT_TCP_FASTOPEN.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_TCP_FASTOPEN.3 rename to docs/libcurl/opts/CURLOPT_TCP_FASTOPEN.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_TCP_KEEPALIVE.3 b/docs/libcurl/opts/CURLOPT_TCP_KEEPALIVE.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_TCP_KEEPALIVE.3 rename to docs/libcurl/opts/CURLOPT_TCP_KEEPALIVE.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_TCP_KEEPIDLE.3 b/docs/libcurl/opts/CURLOPT_TCP_KEEPIDLE.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_TCP_KEEPIDLE.3 rename to docs/libcurl/opts/CURLOPT_TCP_KEEPIDLE.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_TCP_KEEPINTVL.3 b/docs/libcurl/opts/CURLOPT_TCP_KEEPINTVL.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_TCP_KEEPINTVL.3 rename to docs/libcurl/opts/CURLOPT_TCP_KEEPINTVL.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_TCP_NODELAY.3 b/docs/libcurl/opts/CURLOPT_TCP_NODELAY.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_TCP_NODELAY.3 rename to docs/libcurl/opts/CURLOPT_TCP_NODELAY.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_TELNETOPTIONS.3 b/docs/libcurl/opts/CURLOPT_TELNETOPTIONS.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_TELNETOPTIONS.3 rename to docs/libcurl/opts/CURLOPT_TELNETOPTIONS.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_TFTP_BLKSIZE.3 b/docs/libcurl/opts/CURLOPT_TFTP_BLKSIZE.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_TFTP_BLKSIZE.3 rename to docs/libcurl/opts/CURLOPT_TFTP_BLKSIZE.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_TFTP_NO_OPTIONS.3 b/docs/libcurl/opts/CURLOPT_TFTP_NO_OPTIONS.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_TFTP_NO_OPTIONS.3 rename to docs/libcurl/opts/CURLOPT_TFTP_NO_OPTIONS.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_TIMECONDITION.3 b/docs/libcurl/opts/CURLOPT_TIMECONDITION.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_TIMECONDITION.3 rename to docs/libcurl/opts/CURLOPT_TIMECONDITION.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_TIMEOUT.3 b/docs/libcurl/opts/CURLOPT_TIMEOUT.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_TIMEOUT.3 rename to docs/libcurl/opts/CURLOPT_TIMEOUT.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_TIMEOUT_MS.3 b/docs/libcurl/opts/CURLOPT_TIMEOUT_MS.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_TIMEOUT_MS.3 rename to docs/libcurl/opts/CURLOPT_TIMEOUT_MS.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_TIMEVALUE.3 b/docs/libcurl/opts/CURLOPT_TIMEVALUE.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_TIMEVALUE.3 rename to docs/libcurl/opts/CURLOPT_TIMEVALUE.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_TIMEVALUE_LARGE.3 b/docs/libcurl/opts/CURLOPT_TIMEVALUE_LARGE.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_TIMEVALUE_LARGE.3 rename to docs/libcurl/opts/CURLOPT_TIMEVALUE_LARGE.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_TLS13_CIPHERS.3 b/docs/libcurl/opts/CURLOPT_TLS13_CIPHERS.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_TLS13_CIPHERS.3 rename to docs/libcurl/opts/CURLOPT_TLS13_CIPHERS.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_TLSAUTH_PASSWORD.3 b/docs/libcurl/opts/CURLOPT_TLSAUTH_PASSWORD.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_TLSAUTH_PASSWORD.3 rename to docs/libcurl/opts/CURLOPT_TLSAUTH_PASSWORD.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_TLSAUTH_TYPE.3 b/docs/libcurl/opts/CURLOPT_TLSAUTH_TYPE.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_TLSAUTH_TYPE.3 rename to docs/libcurl/opts/CURLOPT_TLSAUTH_TYPE.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_TLSAUTH_USERNAME.3 b/docs/libcurl/opts/CURLOPT_TLSAUTH_USERNAME.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_TLSAUTH_USERNAME.3 rename to docs/libcurl/opts/CURLOPT_TLSAUTH_USERNAME.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_TRAILERDATA.3 b/docs/libcurl/opts/CURLOPT_TRAILERDATA.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_TRAILERDATA.3 rename to docs/libcurl/opts/CURLOPT_TRAILERDATA.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_TRAILERFUNCTION.3 b/docs/libcurl/opts/CURLOPT_TRAILERFUNCTION.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_TRAILERFUNCTION.3 rename to docs/libcurl/opts/CURLOPT_TRAILERFUNCTION.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_TRANSFERTEXT.3 b/docs/libcurl/opts/CURLOPT_TRANSFERTEXT.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_TRANSFERTEXT.3 rename to docs/libcurl/opts/CURLOPT_TRANSFERTEXT.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_TRANSFER_ENCODING.3 b/docs/libcurl/opts/CURLOPT_TRANSFER_ENCODING.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_TRANSFER_ENCODING.3 rename to docs/libcurl/opts/CURLOPT_TRANSFER_ENCODING.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_UNIX_SOCKET_PATH.3 b/docs/libcurl/opts/CURLOPT_UNIX_SOCKET_PATH.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_UNIX_SOCKET_PATH.3 rename to docs/libcurl/opts/CURLOPT_UNIX_SOCKET_PATH.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_UNRESTRICTED_AUTH.3 b/docs/libcurl/opts/CURLOPT_UNRESTRICTED_AUTH.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_UNRESTRICTED_AUTH.3 rename to docs/libcurl/opts/CURLOPT_UNRESTRICTED_AUTH.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_UPKEEP_INTERVAL_MS.3 b/docs/libcurl/opts/CURLOPT_UPKEEP_INTERVAL_MS.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_UPKEEP_INTERVAL_MS.3 rename to docs/libcurl/opts/CURLOPT_UPKEEP_INTERVAL_MS.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_UPLOAD.3 b/docs/libcurl/opts/CURLOPT_UPLOAD.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_UPLOAD.3 rename to docs/libcurl/opts/CURLOPT_UPLOAD.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_UPLOAD_BUFFERSIZE.3 b/docs/libcurl/opts/CURLOPT_UPLOAD_BUFFERSIZE.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_UPLOAD_BUFFERSIZE.3 rename to docs/libcurl/opts/CURLOPT_UPLOAD_BUFFERSIZE.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_URL.3 b/docs/libcurl/opts/CURLOPT_URL.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_URL.3 rename to docs/libcurl/opts/CURLOPT_URL.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_USERAGENT.3 b/docs/libcurl/opts/CURLOPT_USERAGENT.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_USERAGENT.3 rename to docs/libcurl/opts/CURLOPT_USERAGENT.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_USERNAME.3 b/docs/libcurl/opts/CURLOPT_USERNAME.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_USERNAME.3 rename to docs/libcurl/opts/CURLOPT_USERNAME.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_USERPWD.3 b/docs/libcurl/opts/CURLOPT_USERPWD.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_USERPWD.3 rename to docs/libcurl/opts/CURLOPT_USERPWD.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_USE_SSL.3 b/docs/libcurl/opts/CURLOPT_USE_SSL.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_USE_SSL.3 rename to docs/libcurl/opts/CURLOPT_USE_SSL.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_VERBOSE.3 b/docs/libcurl/opts/CURLOPT_VERBOSE.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_VERBOSE.3 rename to docs/libcurl/opts/CURLOPT_VERBOSE.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_WILDCARDMATCH.3 b/docs/libcurl/opts/CURLOPT_WILDCARDMATCH.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_WILDCARDMATCH.3 rename to docs/libcurl/opts/CURLOPT_WILDCARDMATCH.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_WRITEDATA.3 b/docs/libcurl/opts/CURLOPT_WRITEDATA.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_WRITEDATA.3 rename to docs/libcurl/opts/CURLOPT_WRITEDATA.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_WRITEFUNCTION.3 b/docs/libcurl/opts/CURLOPT_WRITEFUNCTION.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_WRITEFUNCTION.3 rename to docs/libcurl/opts/CURLOPT_WRITEFUNCTION.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_XFERINFODATA.3 b/docs/libcurl/opts/CURLOPT_XFERINFODATA.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_XFERINFODATA.3 rename to docs/libcurl/opts/CURLOPT_XFERINFODATA.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_XFERINFOFUNCTION.3 b/docs/libcurl/opts/CURLOPT_XFERINFOFUNCTION.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_XFERINFOFUNCTION.3 rename to docs/libcurl/opts/CURLOPT_XFERINFOFUNCTION.3 diff --git a/re2-rust/docs/libcurl/opts/CURLOPT_XOAUTH2_BEARER.3 b/docs/libcurl/opts/CURLOPT_XOAUTH2_BEARER.3 similarity index 100% rename from re2-rust/docs/libcurl/opts/CURLOPT_XOAUTH2_BEARER.3 rename to docs/libcurl/opts/CURLOPT_XOAUTH2_BEARER.3 diff --git a/re2-rust/docs/libcurl/opts/Makefile.am b/docs/libcurl/opts/Makefile.am similarity index 100% rename from re2-rust/docs/libcurl/opts/Makefile.am rename to docs/libcurl/opts/Makefile.am diff --git a/re2-rust/docs/libcurl/opts/Makefile.in b/docs/libcurl/opts/Makefile.in similarity index 100% rename from re2-rust/docs/libcurl/opts/Makefile.in rename to docs/libcurl/opts/Makefile.in diff --git a/re2-rust/docs/libcurl/opts/Makefile.inc b/docs/libcurl/opts/Makefile.inc similarity index 100% rename from re2-rust/docs/libcurl/opts/Makefile.inc rename to docs/libcurl/opts/Makefile.inc diff --git a/re2-rust/docs/libcurl/symbols-in-versions b/docs/libcurl/symbols-in-versions similarity index 100% rename from re2-rust/docs/libcurl/symbols-in-versions rename to docs/libcurl/symbols-in-versions diff --git a/re2-rust/docs/libcurl/symbols.pl b/docs/libcurl/symbols.pl similarity index 100% rename from re2-rust/docs/libcurl/symbols.pl rename to docs/libcurl/symbols.pl diff --git a/re2-rust/docs/mk-ca-bundle.1 b/docs/mk-ca-bundle.1 similarity index 100% rename from re2-rust/docs/mk-ca-bundle.1 rename to docs/mk-ca-bundle.1 diff --git a/re2-rust/docs/options-in-versions b/docs/options-in-versions similarity index 100% rename from re2-rust/docs/options-in-versions rename to docs/options-in-versions diff --git a/re2-rust/include/Makefile.am b/include/Makefile.am similarity index 100% rename from re2-rust/include/Makefile.am rename to include/Makefile.am diff --git a/re2-rust/include/Makefile.in b/include/Makefile.in similarity index 100% rename from re2-rust/include/Makefile.in rename to include/Makefile.in diff --git a/re2-rust/include/README.md b/include/README.md similarity index 100% rename from re2-rust/include/README.md rename to include/README.md diff --git a/re2-rust/include/curl/Makefile.am b/include/curl/Makefile.am similarity index 100% rename from re2-rust/include/curl/Makefile.am rename to include/curl/Makefile.am diff --git a/re2-rust/include/curl/Makefile.in b/include/curl/Makefile.in similarity index 100% rename from re2-rust/include/curl/Makefile.in rename to include/curl/Makefile.in diff --git a/re2-rust/include/curl/curl.h b/include/curl/curl.h similarity index 100% rename from re2-rust/include/curl/curl.h rename to include/curl/curl.h diff --git a/re2-rust/include/curl/curlver.h b/include/curl/curlver.h similarity index 100% rename from re2-rust/include/curl/curlver.h rename to include/curl/curlver.h diff --git a/re2-rust/include/curl/easy.h b/include/curl/easy.h similarity index 100% rename from re2-rust/include/curl/easy.h rename to include/curl/easy.h diff --git a/re2-rust/include/curl/mprintf.h b/include/curl/mprintf.h similarity index 100% rename from re2-rust/include/curl/mprintf.h rename to include/curl/mprintf.h diff --git a/re2-rust/include/curl/multi.h b/include/curl/multi.h similarity index 100% rename from re2-rust/include/curl/multi.h rename to include/curl/multi.h diff --git a/re2-rust/include/curl/options.h b/include/curl/options.h similarity index 100% rename from re2-rust/include/curl/options.h rename to include/curl/options.h diff --git a/re2-rust/include/curl/stdcheaders.h b/include/curl/stdcheaders.h similarity index 100% rename from re2-rust/include/curl/stdcheaders.h rename to include/curl/stdcheaders.h diff --git a/re2-rust/include/curl/system.h b/include/curl/system.h similarity index 100% rename from re2-rust/include/curl/system.h rename to include/curl/system.h diff --git a/re2-rust/include/curl/typecheck-gcc.h b/include/curl/typecheck-gcc.h similarity index 100% rename from re2-rust/include/curl/typecheck-gcc.h rename to include/curl/typecheck-gcc.h diff --git a/re2-rust/include/curl/urlapi.h b/include/curl/urlapi.h similarity index 100% rename from re2-rust/include/curl/urlapi.h rename to include/curl/urlapi.h diff --git a/re2-rust/install-sh b/install-sh similarity index 100% rename from re2-rust/install-sh rename to install-sh diff --git a/re2-rust/lib/.checksrc b/lib/.checksrc similarity index 100% rename from re2-rust/lib/.checksrc rename to lib/.checksrc diff --git a/re2-rust/lib/CMakeLists.txt b/lib/CMakeLists.txt similarity index 100% rename from re2-rust/lib/CMakeLists.txt rename to lib/CMakeLists.txt diff --git a/re2-rust/lib/Makefile.am b/lib/Makefile.am similarity index 100% rename from re2-rust/lib/Makefile.am rename to lib/Makefile.am diff --git a/re2-rust/lib/Makefile.in b/lib/Makefile.in similarity index 100% rename from re2-rust/lib/Makefile.in rename to lib/Makefile.in diff --git a/re2-rust/lib/Makefile.inc b/lib/Makefile.inc similarity index 100% rename from re2-rust/lib/Makefile.inc rename to lib/Makefile.inc diff --git a/re2-rust/lib/Makefile.m32 b/lib/Makefile.m32 similarity index 100% rename from re2-rust/lib/Makefile.m32 rename to lib/Makefile.m32 diff --git a/re2-rust/lib/Makefile.netware b/lib/Makefile.netware similarity index 100% rename from re2-rust/lib/Makefile.netware rename to lib/Makefile.netware diff --git a/re2-rust/lib/Makefile.vxworks b/lib/Makefile.vxworks similarity index 100% rename from re2-rust/lib/Makefile.vxworks rename to lib/Makefile.vxworks diff --git a/re2-rust/lib/altsvc.c b/lib/altsvc.c similarity index 100% rename from re2-rust/lib/altsvc.c rename to lib/altsvc.c diff --git a/re2-rust/lib/altsvc.h b/lib/altsvc.h similarity index 100% rename from re2-rust/lib/altsvc.h rename to lib/altsvc.h diff --git a/re2-rust/lib/amigaos.c b/lib/amigaos.c similarity index 100% rename from re2-rust/lib/amigaos.c rename to lib/amigaos.c diff --git a/re2-rust/lib/amigaos.h b/lib/amigaos.h similarity index 100% rename from re2-rust/lib/amigaos.h rename to lib/amigaos.h diff --git a/re2-rust/lib/arpa_telnet.h b/lib/arpa_telnet.h similarity index 100% rename from re2-rust/lib/arpa_telnet.h rename to lib/arpa_telnet.h diff --git a/re2-rust/lib/asyn-ares.c b/lib/asyn-ares.c similarity index 100% rename from re2-rust/lib/asyn-ares.c rename to lib/asyn-ares.c diff --git a/re2-rust/lib/asyn-thread.c b/lib/asyn-thread.c similarity index 100% rename from re2-rust/lib/asyn-thread.c rename to lib/asyn-thread.c diff --git a/re2-rust/lib/asyn.h b/lib/asyn.h similarity index 100% rename from re2-rust/lib/asyn.h rename to lib/asyn.h diff --git a/re2-rust/lib/base64.c b/lib/base64.c similarity index 100% rename from re2-rust/lib/base64.c rename to lib/base64.c diff --git a/re2-rust/lib/bufref.c b/lib/bufref.c similarity index 100% rename from re2-rust/lib/bufref.c rename to lib/bufref.c diff --git a/re2-rust/lib/bufref.h b/lib/bufref.h similarity index 100% rename from re2-rust/lib/bufref.h rename to lib/bufref.h diff --git a/re2-rust/lib/c-hyper.c b/lib/c-hyper.c similarity index 100% rename from re2-rust/lib/c-hyper.c rename to lib/c-hyper.c diff --git a/re2-rust/lib/c-hyper.h b/lib/c-hyper.h similarity index 100% rename from re2-rust/lib/c-hyper.h rename to lib/c-hyper.h diff --git a/re2-rust/lib/checksrc.pl b/lib/checksrc.pl similarity index 100% rename from re2-rust/lib/checksrc.pl rename to lib/checksrc.pl diff --git a/re2-rust/lib/config-amigaos.h b/lib/config-amigaos.h similarity index 100% rename from re2-rust/lib/config-amigaos.h rename to lib/config-amigaos.h diff --git a/re2-rust/lib/config-dos.h b/lib/config-dos.h similarity index 100% rename from re2-rust/lib/config-dos.h rename to lib/config-dos.h diff --git a/re2-rust/lib/config-mac.h b/lib/config-mac.h similarity index 100% rename from re2-rust/lib/config-mac.h rename to lib/config-mac.h diff --git a/re2-rust/lib/config-os400.h b/lib/config-os400.h similarity index 100% rename from re2-rust/lib/config-os400.h rename to lib/config-os400.h diff --git a/re2-rust/lib/config-plan9.h b/lib/config-plan9.h similarity index 100% rename from re2-rust/lib/config-plan9.h rename to lib/config-plan9.h diff --git a/re2-rust/lib/config-riscos.h b/lib/config-riscos.h similarity index 100% rename from re2-rust/lib/config-riscos.h rename to lib/config-riscos.h diff --git a/re2-rust/lib/config-tpf.h b/lib/config-tpf.h similarity index 100% rename from re2-rust/lib/config-tpf.h rename to lib/config-tpf.h diff --git a/re2-rust/lib/config-vxworks.h b/lib/config-vxworks.h similarity index 100% rename from re2-rust/lib/config-vxworks.h rename to lib/config-vxworks.h diff --git a/re2-rust/lib/config-win32.h b/lib/config-win32.h similarity index 100% rename from re2-rust/lib/config-win32.h rename to lib/config-win32.h diff --git a/re2-rust/lib/config-win32ce.h b/lib/config-win32ce.h similarity index 100% rename from re2-rust/lib/config-win32ce.h rename to lib/config-win32ce.h diff --git a/re2-rust/lib/conncache.c b/lib/conncache.c similarity index 100% rename from re2-rust/lib/conncache.c rename to lib/conncache.c diff --git a/re2-rust/lib/conncache.h b/lib/conncache.h similarity index 100% rename from re2-rust/lib/conncache.h rename to lib/conncache.h diff --git a/re2-rust/lib/connect.c b/lib/connect.c similarity index 100% rename from re2-rust/lib/connect.c rename to lib/connect.c diff --git a/re2-rust/lib/connect.h b/lib/connect.h similarity index 100% rename from re2-rust/lib/connect.h rename to lib/connect.h diff --git a/re2-rust/lib/content_encoding.c b/lib/content_encoding.c similarity index 100% rename from re2-rust/lib/content_encoding.c rename to lib/content_encoding.c diff --git a/re2-rust/lib/content_encoding.h b/lib/content_encoding.h similarity index 100% rename from re2-rust/lib/content_encoding.h rename to lib/content_encoding.h diff --git a/re2-rust/lib/cookie.c b/lib/cookie.c similarity index 100% rename from re2-rust/lib/cookie.c rename to lib/cookie.c diff --git a/re2-rust/lib/cookie.h b/lib/cookie.h similarity index 100% rename from re2-rust/lib/cookie.h rename to lib/cookie.h diff --git a/re2-rust/lib/curl_addrinfo.c b/lib/curl_addrinfo.c similarity index 100% rename from re2-rust/lib/curl_addrinfo.c rename to lib/curl_addrinfo.c diff --git a/re2-rust/lib/curl_addrinfo.h b/lib/curl_addrinfo.h similarity index 100% rename from re2-rust/lib/curl_addrinfo.h rename to lib/curl_addrinfo.h diff --git a/re2-rust/lib/curl_base64.h b/lib/curl_base64.h similarity index 100% rename from re2-rust/lib/curl_base64.h rename to lib/curl_base64.h diff --git a/re2-rust/lib/curl_config.h.cmake b/lib/curl_config.h.cmake similarity index 100% rename from re2-rust/lib/curl_config.h.cmake rename to lib/curl_config.h.cmake diff --git a/re2-rust/lib/curl_config.h.in b/lib/curl_config.h.in similarity index 100% rename from re2-rust/lib/curl_config.h.in rename to lib/curl_config.h.in diff --git a/re2-rust/lib/curl_ctype.c b/lib/curl_ctype.c similarity index 100% rename from re2-rust/lib/curl_ctype.c rename to lib/curl_ctype.c diff --git a/re2-rust/lib/curl_ctype.h b/lib/curl_ctype.h similarity index 100% rename from re2-rust/lib/curl_ctype.h rename to lib/curl_ctype.h diff --git a/re2-rust/lib/curl_des.c b/lib/curl_des.c similarity index 100% rename from re2-rust/lib/curl_des.c rename to lib/curl_des.c diff --git a/re2-rust/lib/curl_des.h b/lib/curl_des.h similarity index 100% rename from re2-rust/lib/curl_des.h rename to lib/curl_des.h diff --git a/re2-rust/lib/curl_endian.c b/lib/curl_endian.c similarity index 100% rename from re2-rust/lib/curl_endian.c rename to lib/curl_endian.c diff --git a/re2-rust/lib/curl_endian.h b/lib/curl_endian.h similarity index 100% rename from re2-rust/lib/curl_endian.h rename to lib/curl_endian.h diff --git a/re2-rust/lib/curl_fnmatch.c b/lib/curl_fnmatch.c similarity index 100% rename from re2-rust/lib/curl_fnmatch.c rename to lib/curl_fnmatch.c diff --git a/re2-rust/lib/curl_fnmatch.h b/lib/curl_fnmatch.h similarity index 100% rename from re2-rust/lib/curl_fnmatch.h rename to lib/curl_fnmatch.h diff --git a/re2-rust/lib/curl_get_line.c b/lib/curl_get_line.c similarity index 100% rename from re2-rust/lib/curl_get_line.c rename to lib/curl_get_line.c diff --git a/re2-rust/lib/curl_get_line.h b/lib/curl_get_line.h similarity index 100% rename from re2-rust/lib/curl_get_line.h rename to lib/curl_get_line.h diff --git a/re2-rust/lib/curl_gethostname.c b/lib/curl_gethostname.c similarity index 100% rename from re2-rust/lib/curl_gethostname.c rename to lib/curl_gethostname.c diff --git a/re2-rust/lib/curl_gethostname.h b/lib/curl_gethostname.h similarity index 100% rename from re2-rust/lib/curl_gethostname.h rename to lib/curl_gethostname.h diff --git a/re2-rust/lib/curl_gssapi.c b/lib/curl_gssapi.c similarity index 100% rename from re2-rust/lib/curl_gssapi.c rename to lib/curl_gssapi.c diff --git a/re2-rust/lib/curl_gssapi.h b/lib/curl_gssapi.h similarity index 100% rename from re2-rust/lib/curl_gssapi.h rename to lib/curl_gssapi.h diff --git a/re2-rust/lib/curl_hmac.h b/lib/curl_hmac.h similarity index 100% rename from re2-rust/lib/curl_hmac.h rename to lib/curl_hmac.h diff --git a/re2-rust/lib/curl_krb5.h b/lib/curl_krb5.h similarity index 100% rename from re2-rust/lib/curl_krb5.h rename to lib/curl_krb5.h diff --git a/re2-rust/lib/curl_ldap.h b/lib/curl_ldap.h similarity index 100% rename from re2-rust/lib/curl_ldap.h rename to lib/curl_ldap.h diff --git a/re2-rust/lib/curl_md4.h b/lib/curl_md4.h similarity index 100% rename from re2-rust/lib/curl_md4.h rename to lib/curl_md4.h diff --git a/re2-rust/lib/curl_md5.h b/lib/curl_md5.h similarity index 100% rename from re2-rust/lib/curl_md5.h rename to lib/curl_md5.h diff --git a/re2-rust/lib/curl_memory.h b/lib/curl_memory.h similarity index 100% rename from re2-rust/lib/curl_memory.h rename to lib/curl_memory.h diff --git a/re2-rust/lib/curl_memrchr.c b/lib/curl_memrchr.c similarity index 100% rename from re2-rust/lib/curl_memrchr.c rename to lib/curl_memrchr.c diff --git a/re2-rust/lib/curl_memrchr.h b/lib/curl_memrchr.h similarity index 100% rename from re2-rust/lib/curl_memrchr.h rename to lib/curl_memrchr.h diff --git a/re2-rust/lib/curl_multibyte.c b/lib/curl_multibyte.c similarity index 100% rename from re2-rust/lib/curl_multibyte.c rename to lib/curl_multibyte.c diff --git a/re2-rust/lib/curl_multibyte.h b/lib/curl_multibyte.h similarity index 100% rename from re2-rust/lib/curl_multibyte.h rename to lib/curl_multibyte.h diff --git a/re2-rust/lib/curl_ntlm_core.c b/lib/curl_ntlm_core.c similarity index 100% rename from re2-rust/lib/curl_ntlm_core.c rename to lib/curl_ntlm_core.c diff --git a/re2-rust/lib/curl_ntlm_core.h b/lib/curl_ntlm_core.h similarity index 100% rename from re2-rust/lib/curl_ntlm_core.h rename to lib/curl_ntlm_core.h diff --git a/re2-rust/lib/curl_ntlm_wb.c b/lib/curl_ntlm_wb.c similarity index 100% rename from re2-rust/lib/curl_ntlm_wb.c rename to lib/curl_ntlm_wb.c diff --git a/re2-rust/lib/curl_ntlm_wb.h b/lib/curl_ntlm_wb.h similarity index 100% rename from re2-rust/lib/curl_ntlm_wb.h rename to lib/curl_ntlm_wb.h diff --git a/re2-rust/lib/curl_path.c b/lib/curl_path.c similarity index 100% rename from re2-rust/lib/curl_path.c rename to lib/curl_path.c diff --git a/re2-rust/lib/curl_path.h b/lib/curl_path.h similarity index 100% rename from re2-rust/lib/curl_path.h rename to lib/curl_path.h diff --git a/re2-rust/lib/curl_printf.h b/lib/curl_printf.h similarity index 100% rename from re2-rust/lib/curl_printf.h rename to lib/curl_printf.h diff --git a/re2-rust/lib/curl_range.c b/lib/curl_range.c similarity index 100% rename from re2-rust/lib/curl_range.c rename to lib/curl_range.c diff --git a/re2-rust/lib/curl_range.h b/lib/curl_range.h similarity index 100% rename from re2-rust/lib/curl_range.h rename to lib/curl_range.h diff --git a/re2-rust/lib/curl_rtmp.c b/lib/curl_rtmp.c similarity index 100% rename from re2-rust/lib/curl_rtmp.c rename to lib/curl_rtmp.c diff --git a/re2-rust/lib/curl_rtmp.h b/lib/curl_rtmp.h similarity index 100% rename from re2-rust/lib/curl_rtmp.h rename to lib/curl_rtmp.h diff --git a/re2-rust/lib/curl_sasl.c b/lib/curl_sasl.c similarity index 100% rename from re2-rust/lib/curl_sasl.c rename to lib/curl_sasl.c diff --git a/re2-rust/lib/curl_sasl.h b/lib/curl_sasl.h similarity index 100% rename from re2-rust/lib/curl_sasl.h rename to lib/curl_sasl.h diff --git a/re2-rust/lib/curl_setup.h b/lib/curl_setup.h similarity index 100% rename from re2-rust/lib/curl_setup.h rename to lib/curl_setup.h diff --git a/re2-rust/lib/curl_setup_once.h b/lib/curl_setup_once.h similarity index 100% rename from re2-rust/lib/curl_setup_once.h rename to lib/curl_setup_once.h diff --git a/re2-rust/lib/curl_sha256.h b/lib/curl_sha256.h similarity index 100% rename from re2-rust/lib/curl_sha256.h rename to lib/curl_sha256.h diff --git a/re2-rust/lib/curl_sspi.c b/lib/curl_sspi.c similarity index 100% rename from re2-rust/lib/curl_sspi.c rename to lib/curl_sspi.c diff --git a/re2-rust/lib/curl_sspi.h b/lib/curl_sspi.h similarity index 100% rename from re2-rust/lib/curl_sspi.h rename to lib/curl_sspi.h diff --git a/re2-rust/lib/curl_threads.c b/lib/curl_threads.c similarity index 100% rename from re2-rust/lib/curl_threads.c rename to lib/curl_threads.c diff --git a/re2-rust/lib/curl_threads.h b/lib/curl_threads.h similarity index 100% rename from re2-rust/lib/curl_threads.h rename to lib/curl_threads.h diff --git a/re2-rust/lib/curlx.h b/lib/curlx.h similarity index 100% rename from re2-rust/lib/curlx.h rename to lib/curlx.h diff --git a/re2-rust/lib/dict.c b/lib/dict.c similarity index 100% rename from re2-rust/lib/dict.c rename to lib/dict.c diff --git a/re2-rust/lib/dict.h b/lib/dict.h similarity index 100% rename from re2-rust/lib/dict.h rename to lib/dict.h diff --git a/re2-rust/lib/doh.c b/lib/doh.c similarity index 100% rename from re2-rust/lib/doh.c rename to lib/doh.c diff --git a/re2-rust/lib/doh.h b/lib/doh.h similarity index 100% rename from re2-rust/lib/doh.h rename to lib/doh.h diff --git a/re2-rust/lib/dotdot.c b/lib/dotdot.c similarity index 100% rename from re2-rust/lib/dotdot.c rename to lib/dotdot.c diff --git a/re2-rust/lib/dotdot.h b/lib/dotdot.h similarity index 100% rename from re2-rust/lib/dotdot.h rename to lib/dotdot.h diff --git a/re2-rust/lib/dynbuf.c b/lib/dynbuf.c similarity index 100% rename from re2-rust/lib/dynbuf.c rename to lib/dynbuf.c diff --git a/re2-rust/lib/dynbuf.h b/lib/dynbuf.h similarity index 100% rename from re2-rust/lib/dynbuf.h rename to lib/dynbuf.h diff --git a/re2-rust/lib/easy.c b/lib/easy.c similarity index 100% rename from re2-rust/lib/easy.c rename to lib/easy.c diff --git a/re2-rust/lib/easygetopt.c b/lib/easygetopt.c similarity index 100% rename from re2-rust/lib/easygetopt.c rename to lib/easygetopt.c diff --git a/re2-rust/lib/easyif.h b/lib/easyif.h similarity index 100% rename from re2-rust/lib/easyif.h rename to lib/easyif.h diff --git a/re2-rust/lib/easyoptions.c b/lib/easyoptions.c similarity index 100% rename from re2-rust/lib/easyoptions.c rename to lib/easyoptions.c diff --git a/re2-rust/lib/easyoptions.h b/lib/easyoptions.h similarity index 100% rename from re2-rust/lib/easyoptions.h rename to lib/easyoptions.h diff --git a/re2-rust/lib/escape.c b/lib/escape.c similarity index 100% rename from re2-rust/lib/escape.c rename to lib/escape.c diff --git a/re2-rust/lib/escape.h b/lib/escape.h similarity index 100% rename from re2-rust/lib/escape.h rename to lib/escape.h diff --git a/re2-rust/lib/file.c b/lib/file.c similarity index 100% rename from re2-rust/lib/file.c rename to lib/file.c diff --git a/re2-rust/lib/file.h b/lib/file.h similarity index 100% rename from re2-rust/lib/file.h rename to lib/file.h diff --git a/re2-rust/lib/fileinfo.c b/lib/fileinfo.c similarity index 100% rename from re2-rust/lib/fileinfo.c rename to lib/fileinfo.c diff --git a/re2-rust/lib/fileinfo.h b/lib/fileinfo.h similarity index 100% rename from re2-rust/lib/fileinfo.h rename to lib/fileinfo.h diff --git a/re2-rust/lib/firefox-db2pem.sh b/lib/firefox-db2pem.sh similarity index 100% rename from re2-rust/lib/firefox-db2pem.sh rename to lib/firefox-db2pem.sh diff --git a/re2-rust/lib/formdata.c b/lib/formdata.c similarity index 100% rename from re2-rust/lib/formdata.c rename to lib/formdata.c diff --git a/re2-rust/lib/formdata.h b/lib/formdata.h similarity index 100% rename from re2-rust/lib/formdata.h rename to lib/formdata.h diff --git a/re2-rust/lib/ftp.c b/lib/ftp.c similarity index 100% rename from re2-rust/lib/ftp.c rename to lib/ftp.c diff --git a/re2-rust/lib/ftp.h b/lib/ftp.h similarity index 100% rename from re2-rust/lib/ftp.h rename to lib/ftp.h diff --git a/re2-rust/lib/ftplistparser.c b/lib/ftplistparser.c similarity index 100% rename from re2-rust/lib/ftplistparser.c rename to lib/ftplistparser.c diff --git a/re2-rust/lib/ftplistparser.h b/lib/ftplistparser.h similarity index 100% rename from re2-rust/lib/ftplistparser.h rename to lib/ftplistparser.h diff --git a/re2-rust/lib/getenv.c b/lib/getenv.c similarity index 100% rename from re2-rust/lib/getenv.c rename to lib/getenv.c diff --git a/re2-rust/lib/getinfo.c b/lib/getinfo.c similarity index 100% rename from re2-rust/lib/getinfo.c rename to lib/getinfo.c diff --git a/re2-rust/lib/getinfo.h b/lib/getinfo.h similarity index 100% rename from re2-rust/lib/getinfo.h rename to lib/getinfo.h diff --git a/re2-rust/lib/gopher.c b/lib/gopher.c similarity index 100% rename from re2-rust/lib/gopher.c rename to lib/gopher.c diff --git a/re2-rust/lib/gopher.h b/lib/gopher.h similarity index 100% rename from re2-rust/lib/gopher.h rename to lib/gopher.h diff --git a/re2-rust/lib/hash.c b/lib/hash.c similarity index 100% rename from re2-rust/lib/hash.c rename to lib/hash.c diff --git a/re2-rust/lib/hash.h b/lib/hash.h similarity index 100% rename from re2-rust/lib/hash.h rename to lib/hash.h diff --git a/re2-rust/lib/hmac.c b/lib/hmac.c similarity index 100% rename from re2-rust/lib/hmac.c rename to lib/hmac.c diff --git a/re2-rust/lib/hostasyn.c b/lib/hostasyn.c similarity index 100% rename from re2-rust/lib/hostasyn.c rename to lib/hostasyn.c diff --git a/re2-rust/lib/hostcheck.c b/lib/hostcheck.c similarity index 100% rename from re2-rust/lib/hostcheck.c rename to lib/hostcheck.c diff --git a/re2-rust/lib/hostcheck.h b/lib/hostcheck.h similarity index 100% rename from re2-rust/lib/hostcheck.h rename to lib/hostcheck.h diff --git a/re2-rust/lib/hostip.c b/lib/hostip.c similarity index 100% rename from re2-rust/lib/hostip.c rename to lib/hostip.c diff --git a/re2-rust/lib/hostip.h b/lib/hostip.h similarity index 100% rename from re2-rust/lib/hostip.h rename to lib/hostip.h diff --git a/re2-rust/lib/hostip4.c b/lib/hostip4.c similarity index 100% rename from re2-rust/lib/hostip4.c rename to lib/hostip4.c diff --git a/re2-rust/lib/hostip6.c b/lib/hostip6.c similarity index 100% rename from re2-rust/lib/hostip6.c rename to lib/hostip6.c diff --git a/re2-rust/lib/hostsyn.c b/lib/hostsyn.c similarity index 100% rename from re2-rust/lib/hostsyn.c rename to lib/hostsyn.c diff --git a/re2-rust/lib/hsts.c b/lib/hsts.c similarity index 100% rename from re2-rust/lib/hsts.c rename to lib/hsts.c diff --git a/re2-rust/lib/hsts.h b/lib/hsts.h similarity index 100% rename from re2-rust/lib/hsts.h rename to lib/hsts.h diff --git a/re2-rust/lib/http.c b/lib/http.c similarity index 100% rename from re2-rust/lib/http.c rename to lib/http.c diff --git a/re2-rust/lib/http.h b/lib/http.h similarity index 100% rename from re2-rust/lib/http.h rename to lib/http.h diff --git a/re2-rust/lib/http2.c b/lib/http2.c similarity index 100% rename from re2-rust/lib/http2.c rename to lib/http2.c diff --git a/re2-rust/lib/http2.h b/lib/http2.h similarity index 100% rename from re2-rust/lib/http2.h rename to lib/http2.h diff --git a/re2-rust/lib/http_aws_sigv4.c b/lib/http_aws_sigv4.c similarity index 100% rename from re2-rust/lib/http_aws_sigv4.c rename to lib/http_aws_sigv4.c diff --git a/re2-rust/lib/http_aws_sigv4.h b/lib/http_aws_sigv4.h similarity index 100% rename from re2-rust/lib/http_aws_sigv4.h rename to lib/http_aws_sigv4.h diff --git a/re2-rust/lib/http_chunks.c b/lib/http_chunks.c similarity index 100% rename from re2-rust/lib/http_chunks.c rename to lib/http_chunks.c diff --git a/re2-rust/lib/http_chunks.h b/lib/http_chunks.h similarity index 100% rename from re2-rust/lib/http_chunks.h rename to lib/http_chunks.h diff --git a/re2-rust/lib/http_digest.c b/lib/http_digest.c similarity index 100% rename from re2-rust/lib/http_digest.c rename to lib/http_digest.c diff --git a/re2-rust/lib/http_digest.h b/lib/http_digest.h similarity index 100% rename from re2-rust/lib/http_digest.h rename to lib/http_digest.h diff --git a/re2-rust/lib/http_negotiate.c b/lib/http_negotiate.c similarity index 100% rename from re2-rust/lib/http_negotiate.c rename to lib/http_negotiate.c diff --git a/re2-rust/lib/http_negotiate.h b/lib/http_negotiate.h similarity index 100% rename from re2-rust/lib/http_negotiate.h rename to lib/http_negotiate.h diff --git a/re2-rust/lib/http_ntlm.c b/lib/http_ntlm.c similarity index 100% rename from re2-rust/lib/http_ntlm.c rename to lib/http_ntlm.c diff --git a/re2-rust/lib/http_ntlm.h b/lib/http_ntlm.h similarity index 100% rename from re2-rust/lib/http_ntlm.h rename to lib/http_ntlm.h diff --git a/re2-rust/lib/http_proxy.h b/lib/http_proxy.h similarity index 100% rename from re2-rust/lib/http_proxy.h rename to lib/http_proxy.h diff --git a/re2-rust/lib/http_proxy.rs b/lib/http_proxy.rs similarity index 100% rename from re2-rust/lib/http_proxy.rs rename to lib/http_proxy.rs diff --git a/re2-rust/lib/idn_win32.c b/lib/idn_win32.c similarity index 100% rename from re2-rust/lib/idn_win32.c rename to lib/idn_win32.c diff --git a/re2-rust/lib/if2ip.c b/lib/if2ip.c similarity index 100% rename from re2-rust/lib/if2ip.c rename to lib/if2ip.c diff --git a/re2-rust/lib/if2ip.h b/lib/if2ip.h similarity index 100% rename from re2-rust/lib/if2ip.h rename to lib/if2ip.h diff --git a/re2-rust/lib/imap.c b/lib/imap.c similarity index 100% rename from re2-rust/lib/imap.c rename to lib/imap.c diff --git a/re2-rust/lib/imap.h b/lib/imap.h similarity index 100% rename from re2-rust/lib/imap.h rename to lib/imap.h diff --git a/re2-rust/lib/inet_ntop.c b/lib/inet_ntop.c similarity index 100% rename from re2-rust/lib/inet_ntop.c rename to lib/inet_ntop.c diff --git a/re2-rust/lib/inet_ntop.h b/lib/inet_ntop.h similarity index 100% rename from re2-rust/lib/inet_ntop.h rename to lib/inet_ntop.h diff --git a/re2-rust/lib/inet_pton.c b/lib/inet_pton.c similarity index 100% rename from re2-rust/lib/inet_pton.c rename to lib/inet_pton.c diff --git a/re2-rust/lib/inet_pton.h b/lib/inet_pton.h similarity index 100% rename from re2-rust/lib/inet_pton.h rename to lib/inet_pton.h diff --git a/re2-rust/lib/krb5.c b/lib/krb5.c similarity index 100% rename from re2-rust/lib/krb5.c rename to lib/krb5.c diff --git a/re2-rust/lib/ldap.c b/lib/ldap.c similarity index 100% rename from re2-rust/lib/ldap.c rename to lib/ldap.c diff --git a/re2-rust/lib/libcurl.plist b/lib/libcurl.plist similarity index 100% rename from re2-rust/lib/libcurl.plist rename to lib/libcurl.plist diff --git a/re2-rust/lib/libcurl.rc b/lib/libcurl.rc similarity index 100% rename from re2-rust/lib/libcurl.rc rename to lib/libcurl.rc diff --git a/re2-rust/lib/libcurl.vers.in b/lib/libcurl.vers.in similarity index 100% rename from re2-rust/lib/libcurl.vers.in rename to lib/libcurl.vers.in diff --git a/re2-rust/lib/llist.c b/lib/llist.c similarity index 100% rename from re2-rust/lib/llist.c rename to lib/llist.c diff --git a/re2-rust/lib/llist.h b/lib/llist.h similarity index 100% rename from re2-rust/lib/llist.h rename to lib/llist.h diff --git a/re2-rust/lib/makefile.amiga b/lib/makefile.amiga similarity index 100% rename from re2-rust/lib/makefile.amiga rename to lib/makefile.amiga diff --git a/re2-rust/lib/makefile.dj b/lib/makefile.dj similarity index 100% rename from re2-rust/lib/makefile.dj rename to lib/makefile.dj diff --git a/re2-rust/lib/md4.c b/lib/md4.c similarity index 100% rename from re2-rust/lib/md4.c rename to lib/md4.c diff --git a/re2-rust/lib/md5.c b/lib/md5.c similarity index 100% rename from re2-rust/lib/md5.c rename to lib/md5.c diff --git a/re2-rust/lib/memdebug.c b/lib/memdebug.c similarity index 100% rename from re2-rust/lib/memdebug.c rename to lib/memdebug.c diff --git a/re2-rust/lib/memdebug.h b/lib/memdebug.h similarity index 100% rename from re2-rust/lib/memdebug.h rename to lib/memdebug.h diff --git a/re2-rust/lib/mime.c b/lib/mime.c similarity index 100% rename from re2-rust/lib/mime.c rename to lib/mime.c diff --git a/re2-rust/lib/mime.h b/lib/mime.h similarity index 100% rename from re2-rust/lib/mime.h rename to lib/mime.h diff --git a/re2-rust/lib/mk-ca-bundle.pl b/lib/mk-ca-bundle.pl similarity index 100% rename from re2-rust/lib/mk-ca-bundle.pl rename to lib/mk-ca-bundle.pl diff --git a/re2-rust/lib/mk-ca-bundle.vbs b/lib/mk-ca-bundle.vbs similarity index 100% rename from re2-rust/lib/mk-ca-bundle.vbs rename to lib/mk-ca-bundle.vbs diff --git a/re2-rust/lib/mprintf.c b/lib/mprintf.c similarity index 100% rename from re2-rust/lib/mprintf.c rename to lib/mprintf.c diff --git a/re2-rust/lib/mqtt.c b/lib/mqtt.c similarity index 100% rename from re2-rust/lib/mqtt.c rename to lib/mqtt.c diff --git a/re2-rust/lib/mqtt.h b/lib/mqtt.h similarity index 100% rename from re2-rust/lib/mqtt.h rename to lib/mqtt.h diff --git a/re2-rust/lib/multi.c b/lib/multi.c similarity index 100% rename from re2-rust/lib/multi.c rename to lib/multi.c diff --git a/re2-rust/lib/multihandle.h b/lib/multihandle.h similarity index 100% rename from re2-rust/lib/multihandle.h rename to lib/multihandle.h diff --git a/re2-rust/lib/multiif.h b/lib/multiif.h similarity index 100% rename from re2-rust/lib/multiif.h rename to lib/multiif.h diff --git a/re2-rust/lib/netrc.c b/lib/netrc.c similarity index 100% rename from re2-rust/lib/netrc.c rename to lib/netrc.c diff --git a/re2-rust/lib/netrc.h b/lib/netrc.h similarity index 100% rename from re2-rust/lib/netrc.h rename to lib/netrc.h diff --git a/re2-rust/lib/non-ascii.c b/lib/non-ascii.c similarity index 100% rename from re2-rust/lib/non-ascii.c rename to lib/non-ascii.c diff --git a/re2-rust/lib/non-ascii.h b/lib/non-ascii.h similarity index 100% rename from re2-rust/lib/non-ascii.h rename to lib/non-ascii.h diff --git a/re2-rust/lib/nonblock.c b/lib/nonblock.c similarity index 100% rename from re2-rust/lib/nonblock.c rename to lib/nonblock.c diff --git a/re2-rust/lib/nonblock.h b/lib/nonblock.h similarity index 100% rename from re2-rust/lib/nonblock.h rename to lib/nonblock.h diff --git a/re2-rust/lib/nwlib.c b/lib/nwlib.c similarity index 100% rename from re2-rust/lib/nwlib.c rename to lib/nwlib.c diff --git a/re2-rust/lib/nwos.c b/lib/nwos.c similarity index 100% rename from re2-rust/lib/nwos.c rename to lib/nwos.c diff --git a/re2-rust/lib/openldap.c b/lib/openldap.c similarity index 100% rename from re2-rust/lib/openldap.c rename to lib/openldap.c diff --git a/re2-rust/lib/parsedate.c b/lib/parsedate.c similarity index 100% rename from re2-rust/lib/parsedate.c rename to lib/parsedate.c diff --git a/re2-rust/lib/parsedate.h b/lib/parsedate.h similarity index 100% rename from re2-rust/lib/parsedate.h rename to lib/parsedate.h diff --git a/re2-rust/lib/pingpong.c b/lib/pingpong.c similarity index 100% rename from re2-rust/lib/pingpong.c rename to lib/pingpong.c diff --git a/re2-rust/lib/pingpong.h b/lib/pingpong.h similarity index 100% rename from re2-rust/lib/pingpong.h rename to lib/pingpong.h diff --git a/re2-rust/lib/pop3.c b/lib/pop3.c similarity index 100% rename from re2-rust/lib/pop3.c rename to lib/pop3.c diff --git a/re2-rust/lib/pop3.h b/lib/pop3.h similarity index 100% rename from re2-rust/lib/pop3.h rename to lib/pop3.h diff --git a/re2-rust/lib/progress.c b/lib/progress.c similarity index 100% rename from re2-rust/lib/progress.c rename to lib/progress.c diff --git a/re2-rust/lib/progress.h b/lib/progress.h similarity index 100% rename from re2-rust/lib/progress.h rename to lib/progress.h diff --git a/re2-rust/lib/psl.c b/lib/psl.c similarity index 100% rename from re2-rust/lib/psl.c rename to lib/psl.c diff --git a/re2-rust/lib/psl.h b/lib/psl.h similarity index 100% rename from re2-rust/lib/psl.h rename to lib/psl.h diff --git a/re2-rust/lib/quic.h b/lib/quic.h similarity index 100% rename from re2-rust/lib/quic.h rename to lib/quic.h diff --git a/re2-rust/lib/rand.c b/lib/rand.c similarity index 100% rename from re2-rust/lib/rand.c rename to lib/rand.c diff --git a/re2-rust/lib/rand.h b/lib/rand.h similarity index 100% rename from re2-rust/lib/rand.h rename to lib/rand.h diff --git a/re2-rust/lib/rename.c b/lib/rename.c similarity index 100% rename from re2-rust/lib/rename.c rename to lib/rename.c diff --git a/re2-rust/lib/rename.h b/lib/rename.h similarity index 100% rename from re2-rust/lib/rename.h rename to lib/rename.h diff --git a/re2-rust/lib/rtsp.c b/lib/rtsp.c similarity index 100% rename from re2-rust/lib/rtsp.c rename to lib/rtsp.c diff --git a/re2-rust/lib/rtsp.h b/lib/rtsp.h similarity index 100% rename from re2-rust/lib/rtsp.h rename to lib/rtsp.h diff --git a/re2-rust/lib/select.c b/lib/select.c similarity index 100% rename from re2-rust/lib/select.c rename to lib/select.c diff --git a/re2-rust/lib/select.h b/lib/select.h similarity index 100% rename from re2-rust/lib/select.h rename to lib/select.h diff --git a/re2-rust/lib/sendf.c b/lib/sendf.c similarity index 100% rename from re2-rust/lib/sendf.c rename to lib/sendf.c diff --git a/re2-rust/lib/sendf.h b/lib/sendf.h similarity index 100% rename from re2-rust/lib/sendf.h rename to lib/sendf.h diff --git a/re2-rust/lib/setopt.c b/lib/setopt.c similarity index 100% rename from re2-rust/lib/setopt.c rename to lib/setopt.c diff --git a/re2-rust/lib/setopt.h b/lib/setopt.h similarity index 100% rename from re2-rust/lib/setopt.h rename to lib/setopt.h diff --git a/re2-rust/lib/setup-os400.h b/lib/setup-os400.h similarity index 100% rename from re2-rust/lib/setup-os400.h rename to lib/setup-os400.h diff --git a/re2-rust/lib/setup-vms.h b/lib/setup-vms.h similarity index 100% rename from re2-rust/lib/setup-vms.h rename to lib/setup-vms.h diff --git a/re2-rust/lib/setup-win32.h b/lib/setup-win32.h similarity index 100% rename from re2-rust/lib/setup-win32.h rename to lib/setup-win32.h diff --git a/re2-rust/lib/sha256.c b/lib/sha256.c similarity index 100% rename from re2-rust/lib/sha256.c rename to lib/sha256.c diff --git a/re2-rust/lib/share.c b/lib/share.c similarity index 100% rename from re2-rust/lib/share.c rename to lib/share.c diff --git a/re2-rust/lib/share.h b/lib/share.h similarity index 100% rename from re2-rust/lib/share.h rename to lib/share.h diff --git a/re2-rust/lib/sigpipe.h b/lib/sigpipe.h similarity index 100% rename from re2-rust/lib/sigpipe.h rename to lib/sigpipe.h diff --git a/re2-rust/lib/slist.c b/lib/slist.c similarity index 100% rename from re2-rust/lib/slist.c rename to lib/slist.c diff --git a/re2-rust/lib/slist.h b/lib/slist.h similarity index 100% rename from re2-rust/lib/slist.h rename to lib/slist.h diff --git a/re2-rust/lib/smb.c b/lib/smb.c similarity index 100% rename from re2-rust/lib/smb.c rename to lib/smb.c diff --git a/re2-rust/lib/smb.h b/lib/smb.h similarity index 100% rename from re2-rust/lib/smb.h rename to lib/smb.h diff --git a/re2-rust/lib/smtp.c b/lib/smtp.c similarity index 100% rename from re2-rust/lib/smtp.c rename to lib/smtp.c diff --git a/re2-rust/lib/smtp.h b/lib/smtp.h similarity index 100% rename from re2-rust/lib/smtp.h rename to lib/smtp.h diff --git a/re2-rust/lib/sockaddr.h b/lib/sockaddr.h similarity index 100% rename from re2-rust/lib/sockaddr.h rename to lib/sockaddr.h diff --git a/re2-rust/lib/socketpair.c b/lib/socketpair.c similarity index 100% rename from re2-rust/lib/socketpair.c rename to lib/socketpair.c diff --git a/re2-rust/lib/socketpair.h b/lib/socketpair.h similarity index 100% rename from re2-rust/lib/socketpair.h rename to lib/socketpair.h diff --git a/re2-rust/lib/socks.c b/lib/socks.c similarity index 100% rename from re2-rust/lib/socks.c rename to lib/socks.c diff --git a/re2-rust/lib/socks.h b/lib/socks.h similarity index 100% rename from re2-rust/lib/socks.h rename to lib/socks.h diff --git a/re2-rust/lib/socks_gssapi.c b/lib/socks_gssapi.c similarity index 100% rename from re2-rust/lib/socks_gssapi.c rename to lib/socks_gssapi.c diff --git a/re2-rust/lib/socks_sspi.c b/lib/socks_sspi.c similarity index 100% rename from re2-rust/lib/socks_sspi.c rename to lib/socks_sspi.c diff --git a/re2-rust/lib/speedcheck.c b/lib/speedcheck.c similarity index 100% rename from re2-rust/lib/speedcheck.c rename to lib/speedcheck.c diff --git a/re2-rust/lib/speedcheck.h b/lib/speedcheck.h similarity index 100% rename from re2-rust/lib/speedcheck.h rename to lib/speedcheck.h diff --git a/re2-rust/lib/splay.c b/lib/splay.c similarity index 100% rename from re2-rust/lib/splay.c rename to lib/splay.c diff --git a/re2-rust/lib/splay.h b/lib/splay.h similarity index 100% rename from re2-rust/lib/splay.h rename to lib/splay.h diff --git a/re2-rust/lib/strcase.c b/lib/strcase.c similarity index 100% rename from re2-rust/lib/strcase.c rename to lib/strcase.c diff --git a/re2-rust/lib/strcase.h b/lib/strcase.h similarity index 100% rename from re2-rust/lib/strcase.h rename to lib/strcase.h diff --git a/re2-rust/lib/strdup.c b/lib/strdup.c similarity index 100% rename from re2-rust/lib/strdup.c rename to lib/strdup.c diff --git a/re2-rust/lib/strdup.h b/lib/strdup.h similarity index 100% rename from re2-rust/lib/strdup.h rename to lib/strdup.h diff --git a/re2-rust/lib/strerror.c b/lib/strerror.c similarity index 100% rename from re2-rust/lib/strerror.c rename to lib/strerror.c diff --git a/re2-rust/lib/strerror.h b/lib/strerror.h similarity index 100% rename from re2-rust/lib/strerror.h rename to lib/strerror.h diff --git a/re2-rust/lib/strtok.c b/lib/strtok.c similarity index 100% rename from re2-rust/lib/strtok.c rename to lib/strtok.c diff --git a/re2-rust/lib/strtok.h b/lib/strtok.h similarity index 100% rename from re2-rust/lib/strtok.h rename to lib/strtok.h diff --git a/re2-rust/lib/strtoofft.c b/lib/strtoofft.c similarity index 100% rename from re2-rust/lib/strtoofft.c rename to lib/strtoofft.c diff --git a/re2-rust/lib/strtoofft.h b/lib/strtoofft.h similarity index 100% rename from re2-rust/lib/strtoofft.h rename to lib/strtoofft.h diff --git a/re2-rust/lib/system_win32.c b/lib/system_win32.c similarity index 100% rename from re2-rust/lib/system_win32.c rename to lib/system_win32.c diff --git a/re2-rust/lib/system_win32.h b/lib/system_win32.h similarity index 100% rename from re2-rust/lib/system_win32.h rename to lib/system_win32.h diff --git a/re2-rust/lib/telnet.c b/lib/telnet.c similarity index 100% rename from re2-rust/lib/telnet.c rename to lib/telnet.c diff --git a/re2-rust/lib/telnet.h b/lib/telnet.h similarity index 100% rename from re2-rust/lib/telnet.h rename to lib/telnet.h diff --git a/re2-rust/lib/tftp.c b/lib/tftp.c similarity index 100% rename from re2-rust/lib/tftp.c rename to lib/tftp.c diff --git a/re2-rust/lib/tftp.h b/lib/tftp.h similarity index 100% rename from re2-rust/lib/tftp.h rename to lib/tftp.h diff --git a/re2-rust/lib/timeval.c b/lib/timeval.c similarity index 100% rename from re2-rust/lib/timeval.c rename to lib/timeval.c diff --git a/re2-rust/lib/timeval.h b/lib/timeval.h similarity index 100% rename from re2-rust/lib/timeval.h rename to lib/timeval.h diff --git a/re2-rust/lib/transfer.c b/lib/transfer.c similarity index 100% rename from re2-rust/lib/transfer.c rename to lib/transfer.c diff --git a/re2-rust/lib/transfer.h b/lib/transfer.h similarity index 100% rename from re2-rust/lib/transfer.h rename to lib/transfer.h diff --git a/re2-rust/lib/url.c b/lib/url.c similarity index 100% rename from re2-rust/lib/url.c rename to lib/url.c diff --git a/re2-rust/lib/url.h b/lib/url.h similarity index 100% rename from re2-rust/lib/url.h rename to lib/url.h diff --git a/re2-rust/lib/urlapi-int.h b/lib/urlapi-int.h similarity index 100% rename from re2-rust/lib/urlapi-int.h rename to lib/urlapi-int.h diff --git a/re2-rust/lib/urlapi.c b/lib/urlapi.c similarity index 100% rename from re2-rust/lib/urlapi.c rename to lib/urlapi.c diff --git a/re2-rust/lib/urldata.h b/lib/urldata.h similarity index 100% rename from re2-rust/lib/urldata.h rename to lib/urldata.h diff --git a/re2-rust/lib/vauth/cleartext.c b/lib/vauth/cleartext.c similarity index 100% rename from re2-rust/lib/vauth/cleartext.c rename to lib/vauth/cleartext.c diff --git a/re2-rust/lib/vauth/cram.c b/lib/vauth/cram.c similarity index 100% rename from re2-rust/lib/vauth/cram.c rename to lib/vauth/cram.c diff --git a/re2-rust/lib/vauth/digest.c b/lib/vauth/digest.c similarity index 100% rename from re2-rust/lib/vauth/digest.c rename to lib/vauth/digest.c diff --git a/re2-rust/lib/vauth/digest.h b/lib/vauth/digest.h similarity index 100% rename from re2-rust/lib/vauth/digest.h rename to lib/vauth/digest.h diff --git a/re2-rust/lib/vauth/digest_sspi.c b/lib/vauth/digest_sspi.c similarity index 100% rename from re2-rust/lib/vauth/digest_sspi.c rename to lib/vauth/digest_sspi.c diff --git a/re2-rust/lib/vauth/gsasl.c b/lib/vauth/gsasl.c similarity index 100% rename from re2-rust/lib/vauth/gsasl.c rename to lib/vauth/gsasl.c diff --git a/re2-rust/lib/vauth/krb5_gssapi.c b/lib/vauth/krb5_gssapi.c similarity index 100% rename from re2-rust/lib/vauth/krb5_gssapi.c rename to lib/vauth/krb5_gssapi.c diff --git a/re2-rust/lib/vauth/krb5_sspi.c b/lib/vauth/krb5_sspi.c similarity index 100% rename from re2-rust/lib/vauth/krb5_sspi.c rename to lib/vauth/krb5_sspi.c diff --git a/re2-rust/lib/vauth/ntlm.c b/lib/vauth/ntlm.c similarity index 100% rename from re2-rust/lib/vauth/ntlm.c rename to lib/vauth/ntlm.c diff --git a/re2-rust/lib/vauth/ntlm.h b/lib/vauth/ntlm.h similarity index 100% rename from re2-rust/lib/vauth/ntlm.h rename to lib/vauth/ntlm.h diff --git a/re2-rust/lib/vauth/ntlm_sspi.c b/lib/vauth/ntlm_sspi.c similarity index 100% rename from re2-rust/lib/vauth/ntlm_sspi.c rename to lib/vauth/ntlm_sspi.c diff --git a/re2-rust/lib/vauth/oauth2.c b/lib/vauth/oauth2.c similarity index 100% rename from re2-rust/lib/vauth/oauth2.c rename to lib/vauth/oauth2.c diff --git a/re2-rust/lib/vauth/spnego_gssapi.c b/lib/vauth/spnego_gssapi.c similarity index 100% rename from re2-rust/lib/vauth/spnego_gssapi.c rename to lib/vauth/spnego_gssapi.c diff --git a/re2-rust/lib/vauth/spnego_sspi.c b/lib/vauth/spnego_sspi.c similarity index 100% rename from re2-rust/lib/vauth/spnego_sspi.c rename to lib/vauth/spnego_sspi.c diff --git a/re2-rust/lib/vauth/vauth.c b/lib/vauth/vauth.c similarity index 100% rename from re2-rust/lib/vauth/vauth.c rename to lib/vauth/vauth.c diff --git a/re2-rust/lib/vauth/vauth.h b/lib/vauth/vauth.h similarity index 100% rename from re2-rust/lib/vauth/vauth.h rename to lib/vauth/vauth.h diff --git a/re2-rust/lib/version.c b/lib/version.c similarity index 100% rename from re2-rust/lib/version.c rename to lib/version.c diff --git a/re2-rust/lib/version_win32.c b/lib/version_win32.c similarity index 100% rename from re2-rust/lib/version_win32.c rename to lib/version_win32.c diff --git a/re2-rust/lib/version_win32.h b/lib/version_win32.h similarity index 100% rename from re2-rust/lib/version_win32.h rename to lib/version_win32.h diff --git a/re2-rust/lib/vquic/ngtcp2.c b/lib/vquic/ngtcp2.c similarity index 100% rename from re2-rust/lib/vquic/ngtcp2.c rename to lib/vquic/ngtcp2.c diff --git a/re2-rust/lib/vquic/ngtcp2.h b/lib/vquic/ngtcp2.h similarity index 100% rename from re2-rust/lib/vquic/ngtcp2.h rename to lib/vquic/ngtcp2.h diff --git a/re2-rust/lib/vquic/quiche.c b/lib/vquic/quiche.c similarity index 100% rename from re2-rust/lib/vquic/quiche.c rename to lib/vquic/quiche.c diff --git a/re2-rust/lib/vquic/quiche.h b/lib/vquic/quiche.h similarity index 100% rename from re2-rust/lib/vquic/quiche.h rename to lib/vquic/quiche.h diff --git a/re2-rust/lib/vquic/vquic.c b/lib/vquic/vquic.c similarity index 100% rename from re2-rust/lib/vquic/vquic.c rename to lib/vquic/vquic.c diff --git a/re2-rust/lib/vquic/vquic.h b/lib/vquic/vquic.h similarity index 100% rename from re2-rust/lib/vquic/vquic.h rename to lib/vquic/vquic.h diff --git a/re2-rust/lib/vssh/libssh.c b/lib/vssh/libssh.c similarity index 100% rename from re2-rust/lib/vssh/libssh.c rename to lib/vssh/libssh.c diff --git a/re2-rust/lib/vssh/libssh2.c b/lib/vssh/libssh2.c similarity index 100% rename from re2-rust/lib/vssh/libssh2.c rename to lib/vssh/libssh2.c diff --git a/re2-rust/lib/vssh/ssh.h b/lib/vssh/ssh.h similarity index 100% rename from re2-rust/lib/vssh/ssh.h rename to lib/vssh/ssh.h diff --git a/re2-rust/lib/vssh/wolfssh.c b/lib/vssh/wolfssh.c similarity index 100% rename from re2-rust/lib/vssh/wolfssh.c rename to lib/vssh/wolfssh.c diff --git a/re2-rust/lib/vtls/bearssl.c b/lib/vtls/bearssl.c similarity index 100% rename from re2-rust/lib/vtls/bearssl.c rename to lib/vtls/bearssl.c diff --git a/re2-rust/lib/vtls/bearssl.h b/lib/vtls/bearssl.h similarity index 100% rename from re2-rust/lib/vtls/bearssl.h rename to lib/vtls/bearssl.h diff --git a/re2-rust/lib/vtls/gskit.c b/lib/vtls/gskit.c similarity index 100% rename from re2-rust/lib/vtls/gskit.c rename to lib/vtls/gskit.c diff --git a/re2-rust/lib/vtls/gskit.h b/lib/vtls/gskit.h similarity index 100% rename from re2-rust/lib/vtls/gskit.h rename to lib/vtls/gskit.h diff --git a/re2-rust/lib/vtls/gtls.c b/lib/vtls/gtls.c similarity index 100% rename from re2-rust/lib/vtls/gtls.c rename to lib/vtls/gtls.c diff --git a/re2-rust/lib/vtls/gtls.h b/lib/vtls/gtls.h similarity index 100% rename from re2-rust/lib/vtls/gtls.h rename to lib/vtls/gtls.h diff --git a/re2-rust/lib/vtls/keylog.c b/lib/vtls/keylog.c similarity index 100% rename from re2-rust/lib/vtls/keylog.c rename to lib/vtls/keylog.c diff --git a/re2-rust/lib/vtls/keylog.h b/lib/vtls/keylog.h similarity index 100% rename from re2-rust/lib/vtls/keylog.h rename to lib/vtls/keylog.h diff --git a/re2-rust/lib/vtls/mbedtls.c b/lib/vtls/mbedtls.c similarity index 100% rename from re2-rust/lib/vtls/mbedtls.c rename to lib/vtls/mbedtls.c diff --git a/re2-rust/lib/vtls/mbedtls.h b/lib/vtls/mbedtls.h similarity index 100% rename from re2-rust/lib/vtls/mbedtls.h rename to lib/vtls/mbedtls.h diff --git a/re2-rust/lib/vtls/mbedtls_threadlock.c b/lib/vtls/mbedtls_threadlock.c similarity index 100% rename from re2-rust/lib/vtls/mbedtls_threadlock.c rename to lib/vtls/mbedtls_threadlock.c diff --git a/re2-rust/lib/vtls/mbedtls_threadlock.h b/lib/vtls/mbedtls_threadlock.h similarity index 100% rename from re2-rust/lib/vtls/mbedtls_threadlock.h rename to lib/vtls/mbedtls_threadlock.h diff --git a/re2-rust/lib/vtls/mesalink.c b/lib/vtls/mesalink.c similarity index 100% rename from re2-rust/lib/vtls/mesalink.c rename to lib/vtls/mesalink.c diff --git a/re2-rust/lib/vtls/mesalink.h b/lib/vtls/mesalink.h similarity index 100% rename from re2-rust/lib/vtls/mesalink.h rename to lib/vtls/mesalink.h diff --git a/re2-rust/lib/vtls/nss.c b/lib/vtls/nss.c similarity index 100% rename from re2-rust/lib/vtls/nss.c rename to lib/vtls/nss.c diff --git a/re2-rust/lib/vtls/nssg.h b/lib/vtls/nssg.h similarity index 100% rename from re2-rust/lib/vtls/nssg.h rename to lib/vtls/nssg.h diff --git a/re2-rust/lib/vtls/openssl.c b/lib/vtls/openssl.c similarity index 100% rename from re2-rust/lib/vtls/openssl.c rename to lib/vtls/openssl.c diff --git a/re2-rust/lib/vtls/openssl.h b/lib/vtls/openssl.h similarity index 100% rename from re2-rust/lib/vtls/openssl.h rename to lib/vtls/openssl.h diff --git a/re2-rust/lib/vtls/rustls.c b/lib/vtls/rustls.c similarity index 100% rename from re2-rust/lib/vtls/rustls.c rename to lib/vtls/rustls.c diff --git a/re2-rust/lib/vtls/rustls.h b/lib/vtls/rustls.h similarity index 100% rename from re2-rust/lib/vtls/rustls.h rename to lib/vtls/rustls.h diff --git a/re2-rust/lib/vtls/schannel.c b/lib/vtls/schannel.c similarity index 100% rename from re2-rust/lib/vtls/schannel.c rename to lib/vtls/schannel.c diff --git a/re2-rust/lib/vtls/schannel.h b/lib/vtls/schannel.h similarity index 100% rename from re2-rust/lib/vtls/schannel.h rename to lib/vtls/schannel.h diff --git a/re2-rust/lib/vtls/schannel_verify.c b/lib/vtls/schannel_verify.c similarity index 100% rename from re2-rust/lib/vtls/schannel_verify.c rename to lib/vtls/schannel_verify.c diff --git a/re2-rust/lib/vtls/sectransp.c b/lib/vtls/sectransp.c similarity index 100% rename from re2-rust/lib/vtls/sectransp.c rename to lib/vtls/sectransp.c diff --git a/re2-rust/lib/vtls/sectransp.h b/lib/vtls/sectransp.h similarity index 100% rename from re2-rust/lib/vtls/sectransp.h rename to lib/vtls/sectransp.h diff --git a/re2-rust/lib/vtls/vtls.c b/lib/vtls/vtls.c similarity index 100% rename from re2-rust/lib/vtls/vtls.c rename to lib/vtls/vtls.c diff --git a/re2-rust/lib/vtls/vtls.h b/lib/vtls/vtls.h similarity index 100% rename from re2-rust/lib/vtls/vtls.h rename to lib/vtls/vtls.h diff --git a/re2-rust/lib/vtls/wolfssl.c b/lib/vtls/wolfssl.c similarity index 100% rename from re2-rust/lib/vtls/wolfssl.c rename to lib/vtls/wolfssl.c diff --git a/re2-rust/lib/vtls/wolfssl.h b/lib/vtls/wolfssl.h similarity index 100% rename from re2-rust/lib/vtls/wolfssl.h rename to lib/vtls/wolfssl.h diff --git a/re2-rust/lib/warnless.c b/lib/warnless.c similarity index 100% rename from re2-rust/lib/warnless.c rename to lib/warnless.c diff --git a/re2-rust/lib/warnless.h b/lib/warnless.h similarity index 100% rename from re2-rust/lib/warnless.h rename to lib/warnless.h diff --git a/re2-rust/lib/wildcard.c b/lib/wildcard.c similarity index 100% rename from re2-rust/lib/wildcard.c rename to lib/wildcard.c diff --git a/re2-rust/lib/wildcard.h b/lib/wildcard.h similarity index 100% rename from re2-rust/lib/wildcard.h rename to lib/wildcard.h diff --git a/re2-rust/lib/x509asn1.c b/lib/x509asn1.c similarity index 100% rename from re2-rust/lib/x509asn1.c rename to lib/x509asn1.c diff --git a/re2-rust/lib/x509asn1.h b/lib/x509asn1.h similarity index 100% rename from re2-rust/lib/x509asn1.h rename to lib/x509asn1.h diff --git a/re2-rust/libcurl.pc.in b/libcurl.pc.in similarity index 100% rename from re2-rust/libcurl.pc.in rename to libcurl.pc.in diff --git a/re2-rust/ltmain.sh b/ltmain.sh similarity index 100% rename from re2-rust/ltmain.sh rename to ltmain.sh diff --git a/re2-rust/m4/ax_compile_check_sizeof.m4 b/m4/ax_compile_check_sizeof.m4 similarity index 100% rename from re2-rust/m4/ax_compile_check_sizeof.m4 rename to m4/ax_compile_check_sizeof.m4 diff --git a/re2-rust/m4/curl-amissl.m4 b/m4/curl-amissl.m4 similarity index 100% rename from re2-rust/m4/curl-amissl.m4 rename to m4/curl-amissl.m4 diff --git a/re2-rust/m4/curl-bearssl.m4 b/m4/curl-bearssl.m4 similarity index 100% rename from re2-rust/m4/curl-bearssl.m4 rename to m4/curl-bearssl.m4 diff --git a/re2-rust/m4/curl-compilers.m4 b/m4/curl-compilers.m4 similarity index 100% rename from re2-rust/m4/curl-compilers.m4 rename to m4/curl-compilers.m4 diff --git a/re2-rust/m4/curl-confopts.m4 b/m4/curl-confopts.m4 similarity index 100% rename from re2-rust/m4/curl-confopts.m4 rename to m4/curl-confopts.m4 diff --git a/re2-rust/m4/curl-functions.m4 b/m4/curl-functions.m4 similarity index 100% rename from re2-rust/m4/curl-functions.m4 rename to m4/curl-functions.m4 diff --git a/re2-rust/m4/curl-gnutls.m4 b/m4/curl-gnutls.m4 similarity index 100% rename from re2-rust/m4/curl-gnutls.m4 rename to m4/curl-gnutls.m4 diff --git a/re2-rust/m4/curl-mbedtls.m4 b/m4/curl-mbedtls.m4 similarity index 100% rename from re2-rust/m4/curl-mbedtls.m4 rename to m4/curl-mbedtls.m4 diff --git a/re2-rust/m4/curl-mesalink.m4 b/m4/curl-mesalink.m4 similarity index 100% rename from re2-rust/m4/curl-mesalink.m4 rename to m4/curl-mesalink.m4 diff --git a/re2-rust/m4/curl-nss.m4 b/m4/curl-nss.m4 similarity index 100% rename from re2-rust/m4/curl-nss.m4 rename to m4/curl-nss.m4 diff --git a/re2-rust/m4/curl-openssl.m4 b/m4/curl-openssl.m4 similarity index 100% rename from re2-rust/m4/curl-openssl.m4 rename to m4/curl-openssl.m4 diff --git a/re2-rust/m4/curl-override.m4 b/m4/curl-override.m4 similarity index 100% rename from re2-rust/m4/curl-override.m4 rename to m4/curl-override.m4 diff --git a/re2-rust/m4/curl-reentrant.m4 b/m4/curl-reentrant.m4 similarity index 100% rename from re2-rust/m4/curl-reentrant.m4 rename to m4/curl-reentrant.m4 diff --git a/re2-rust/m4/curl-rustls.m4 b/m4/curl-rustls.m4 similarity index 100% rename from re2-rust/m4/curl-rustls.m4 rename to m4/curl-rustls.m4 diff --git a/re2-rust/m4/curl-schannel.m4 b/m4/curl-schannel.m4 similarity index 100% rename from re2-rust/m4/curl-schannel.m4 rename to m4/curl-schannel.m4 diff --git a/re2-rust/m4/curl-sectransp.m4 b/m4/curl-sectransp.m4 similarity index 100% rename from re2-rust/m4/curl-sectransp.m4 rename to m4/curl-sectransp.m4 diff --git a/re2-rust/m4/curl-sysconfig.m4 b/m4/curl-sysconfig.m4 similarity index 100% rename from re2-rust/m4/curl-sysconfig.m4 rename to m4/curl-sysconfig.m4 diff --git a/re2-rust/m4/curl-wolfssl.m4 b/m4/curl-wolfssl.m4 similarity index 100% rename from re2-rust/m4/curl-wolfssl.m4 rename to m4/curl-wolfssl.m4 diff --git a/re2-rust/m4/libtool.m4 b/m4/libtool.m4 similarity index 100% rename from re2-rust/m4/libtool.m4 rename to m4/libtool.m4 diff --git a/re2-rust/m4/ltoptions.m4 b/m4/ltoptions.m4 similarity index 100% rename from re2-rust/m4/ltoptions.m4 rename to m4/ltoptions.m4 diff --git a/re2-rust/m4/ltsugar.m4 b/m4/ltsugar.m4 similarity index 100% rename from re2-rust/m4/ltsugar.m4 rename to m4/ltsugar.m4 diff --git a/re2-rust/m4/ltversion.m4 b/m4/ltversion.m4 similarity index 100% rename from re2-rust/m4/ltversion.m4 rename to m4/ltversion.m4 diff --git a/re2-rust/m4/lt~obsolete.m4 b/m4/lt~obsolete.m4 similarity index 100% rename from re2-rust/m4/lt~obsolete.m4 rename to m4/lt~obsolete.m4 diff --git a/re2-rust/m4/xc-am-iface.m4 b/m4/xc-am-iface.m4 similarity index 100% rename from re2-rust/m4/xc-am-iface.m4 rename to m4/xc-am-iface.m4 diff --git a/re2-rust/m4/xc-cc-check.m4 b/m4/xc-cc-check.m4 similarity index 100% rename from re2-rust/m4/xc-cc-check.m4 rename to m4/xc-cc-check.m4 diff --git a/re2-rust/m4/xc-lt-iface.m4 b/m4/xc-lt-iface.m4 similarity index 100% rename from re2-rust/m4/xc-lt-iface.m4 rename to m4/xc-lt-iface.m4 diff --git a/re2-rust/m4/xc-translit.m4 b/m4/xc-translit.m4 similarity index 100% rename from re2-rust/m4/xc-translit.m4 rename to m4/xc-translit.m4 diff --git a/re2-rust/m4/xc-val-flgs.m4 b/m4/xc-val-flgs.m4 similarity index 100% rename from re2-rust/m4/xc-val-flgs.m4 rename to m4/xc-val-flgs.m4 diff --git a/re2-rust/m4/zz40-xc-ovr.m4 b/m4/zz40-xc-ovr.m4 similarity index 100% rename from re2-rust/m4/zz40-xc-ovr.m4 rename to m4/zz40-xc-ovr.m4 diff --git a/re2-rust/m4/zz50-xc-ovr.m4 b/m4/zz50-xc-ovr.m4 similarity index 100% rename from re2-rust/m4/zz50-xc-ovr.m4 rename to m4/zz50-xc-ovr.m4 diff --git a/re2-rust/m4/zz60-xc-ovr.m4 b/m4/zz60-xc-ovr.m4 similarity index 100% rename from re2-rust/m4/zz60-xc-ovr.m4 rename to m4/zz60-xc-ovr.m4 diff --git a/re2-rust/maketgz b/maketgz similarity index 100% rename from re2-rust/maketgz rename to maketgz diff --git a/re2-rust/missing b/missing similarity index 100% rename from re2-rust/missing rename to missing diff --git a/re2-rust/packages/Android/Android.mk b/packages/Android/Android.mk similarity index 100% rename from re2-rust/packages/Android/Android.mk rename to packages/Android/Android.mk diff --git a/re2-rust/packages/DOS/README b/packages/DOS/README similarity index 100% rename from re2-rust/packages/DOS/README rename to packages/DOS/README diff --git a/re2-rust/packages/DOS/common.dj b/packages/DOS/common.dj similarity index 100% rename from re2-rust/packages/DOS/common.dj rename to packages/DOS/common.dj diff --git a/re2-rust/packages/Makefile.am b/packages/Makefile.am similarity index 100% rename from re2-rust/packages/Makefile.am rename to packages/Makefile.am diff --git a/re2-rust/packages/Makefile.in b/packages/Makefile.in similarity index 100% rename from re2-rust/packages/Makefile.in rename to packages/Makefile.in diff --git a/re2-rust/packages/OS400/README.OS400 b/packages/OS400/README.OS400 similarity index 100% rename from re2-rust/packages/OS400/README.OS400 rename to packages/OS400/README.OS400 diff --git a/re2-rust/packages/OS400/ccsidcurl.c b/packages/OS400/ccsidcurl.c similarity index 100% rename from re2-rust/packages/OS400/ccsidcurl.c rename to packages/OS400/ccsidcurl.c diff --git a/re2-rust/packages/OS400/ccsidcurl.h b/packages/OS400/ccsidcurl.h similarity index 100% rename from re2-rust/packages/OS400/ccsidcurl.h rename to packages/OS400/ccsidcurl.h diff --git a/re2-rust/packages/OS400/chkstrings.c b/packages/OS400/chkstrings.c similarity index 100% rename from re2-rust/packages/OS400/chkstrings.c rename to packages/OS400/chkstrings.c diff --git a/re2-rust/packages/OS400/curl.inc.in b/packages/OS400/curl.inc.in similarity index 100% rename from re2-rust/packages/OS400/curl.inc.in rename to packages/OS400/curl.inc.in diff --git a/re2-rust/packages/OS400/initscript.sh b/packages/OS400/initscript.sh similarity index 100% rename from re2-rust/packages/OS400/initscript.sh rename to packages/OS400/initscript.sh diff --git a/re2-rust/packages/OS400/make-include.sh b/packages/OS400/make-include.sh similarity index 100% rename from re2-rust/packages/OS400/make-include.sh rename to packages/OS400/make-include.sh diff --git a/re2-rust/packages/OS400/make-lib.sh b/packages/OS400/make-lib.sh similarity index 100% rename from re2-rust/packages/OS400/make-lib.sh rename to packages/OS400/make-lib.sh diff --git a/re2-rust/packages/OS400/make-src.sh b/packages/OS400/make-src.sh similarity index 100% rename from re2-rust/packages/OS400/make-src.sh rename to packages/OS400/make-src.sh diff --git a/re2-rust/packages/OS400/make-tests.sh b/packages/OS400/make-tests.sh similarity index 100% rename from re2-rust/packages/OS400/make-tests.sh rename to packages/OS400/make-tests.sh diff --git a/re2-rust/packages/OS400/makefile.sh b/packages/OS400/makefile.sh similarity index 100% rename from re2-rust/packages/OS400/makefile.sh rename to packages/OS400/makefile.sh diff --git a/re2-rust/packages/OS400/os400sys.c b/packages/OS400/os400sys.c similarity index 100% rename from re2-rust/packages/OS400/os400sys.c rename to packages/OS400/os400sys.c diff --git a/re2-rust/packages/OS400/os400sys.h b/packages/OS400/os400sys.h similarity index 100% rename from re2-rust/packages/OS400/os400sys.h rename to packages/OS400/os400sys.h diff --git a/re2-rust/packages/README b/packages/README similarity index 100% rename from re2-rust/packages/README rename to packages/README diff --git a/re2-rust/packages/TPF/curl.mak b/packages/TPF/curl.mak similarity index 100% rename from re2-rust/packages/TPF/curl.mak rename to packages/TPF/curl.mak diff --git a/re2-rust/packages/TPF/maketpf.env_curl b/packages/TPF/maketpf.env_curl similarity index 100% rename from re2-rust/packages/TPF/maketpf.env_curl rename to packages/TPF/maketpf.env_curl diff --git a/re2-rust/packages/TPF/maketpf.env_curllib b/packages/TPF/maketpf.env_curllib similarity index 100% rename from re2-rust/packages/TPF/maketpf.env_curllib rename to packages/TPF/maketpf.env_curllib diff --git a/re2-rust/packages/vms/Makefile.am b/packages/vms/Makefile.am similarity index 100% rename from re2-rust/packages/vms/Makefile.am rename to packages/vms/Makefile.am diff --git a/re2-rust/packages/vms/Makefile.in b/packages/vms/Makefile.in similarity index 100% rename from re2-rust/packages/vms/Makefile.in rename to packages/vms/Makefile.in diff --git a/re2-rust/packages/vms/backup_gnv_curl_src.com b/packages/vms/backup_gnv_curl_src.com similarity index 100% rename from re2-rust/packages/vms/backup_gnv_curl_src.com rename to packages/vms/backup_gnv_curl_src.com diff --git a/re2-rust/packages/vms/build_curl-config_script.com b/packages/vms/build_curl-config_script.com similarity index 100% rename from re2-rust/packages/vms/build_curl-config_script.com rename to packages/vms/build_curl-config_script.com diff --git a/re2-rust/packages/vms/build_gnv_curl.com b/packages/vms/build_gnv_curl.com similarity index 100% rename from re2-rust/packages/vms/build_gnv_curl.com rename to packages/vms/build_gnv_curl.com diff --git a/re2-rust/packages/vms/build_gnv_curl_pcsi_desc.com b/packages/vms/build_gnv_curl_pcsi_desc.com similarity index 100% rename from re2-rust/packages/vms/build_gnv_curl_pcsi_desc.com rename to packages/vms/build_gnv_curl_pcsi_desc.com diff --git a/re2-rust/packages/vms/build_gnv_curl_pcsi_text.com b/packages/vms/build_gnv_curl_pcsi_text.com similarity index 100% rename from re2-rust/packages/vms/build_gnv_curl_pcsi_text.com rename to packages/vms/build_gnv_curl_pcsi_text.com diff --git a/re2-rust/packages/vms/build_gnv_curl_release_notes.com b/packages/vms/build_gnv_curl_release_notes.com similarity index 100% rename from re2-rust/packages/vms/build_gnv_curl_release_notes.com rename to packages/vms/build_gnv_curl_release_notes.com diff --git a/re2-rust/packages/vms/build_libcurl_pc.com b/packages/vms/build_libcurl_pc.com similarity index 100% rename from re2-rust/packages/vms/build_libcurl_pc.com rename to packages/vms/build_libcurl_pc.com diff --git a/re2-rust/packages/vms/build_vms.com b/packages/vms/build_vms.com similarity index 100% rename from re2-rust/packages/vms/build_vms.com rename to packages/vms/build_vms.com diff --git a/re2-rust/packages/vms/clean_gnv_curl.com b/packages/vms/clean_gnv_curl.com similarity index 100% rename from re2-rust/packages/vms/clean_gnv_curl.com rename to packages/vms/clean_gnv_curl.com diff --git a/re2-rust/packages/vms/compare_curl_source.com b/packages/vms/compare_curl_source.com similarity index 100% rename from re2-rust/packages/vms/compare_curl_source.com rename to packages/vms/compare_curl_source.com diff --git a/re2-rust/packages/vms/config_h.com b/packages/vms/config_h.com similarity index 100% rename from re2-rust/packages/vms/config_h.com rename to packages/vms/config_h.com diff --git a/re2-rust/packages/vms/curl_crtl_init.c b/packages/vms/curl_crtl_init.c similarity index 100% rename from re2-rust/packages/vms/curl_crtl_init.c rename to packages/vms/curl_crtl_init.c diff --git a/re2-rust/packages/vms/curl_gnv_build_steps.txt b/packages/vms/curl_gnv_build_steps.txt similarity index 100% rename from re2-rust/packages/vms/curl_gnv_build_steps.txt rename to packages/vms/curl_gnv_build_steps.txt diff --git a/re2-rust/packages/vms/curl_release_note_start.txt b/packages/vms/curl_release_note_start.txt similarity index 100% rename from re2-rust/packages/vms/curl_release_note_start.txt rename to packages/vms/curl_release_note_start.txt diff --git a/re2-rust/packages/vms/curl_startup.com b/packages/vms/curl_startup.com similarity index 100% rename from re2-rust/packages/vms/curl_startup.com rename to packages/vms/curl_startup.com diff --git a/re2-rust/packages/vms/curlmsg.h b/packages/vms/curlmsg.h similarity index 100% rename from re2-rust/packages/vms/curlmsg.h rename to packages/vms/curlmsg.h diff --git a/re2-rust/packages/vms/curlmsg.msg b/packages/vms/curlmsg.msg similarity index 100% rename from re2-rust/packages/vms/curlmsg.msg rename to packages/vms/curlmsg.msg diff --git a/re2-rust/packages/vms/curlmsg.sdl b/packages/vms/curlmsg.sdl similarity index 100% rename from re2-rust/packages/vms/curlmsg.sdl rename to packages/vms/curlmsg.sdl diff --git a/re2-rust/packages/vms/curlmsg_vms.h b/packages/vms/curlmsg_vms.h similarity index 100% rename from re2-rust/packages/vms/curlmsg_vms.h rename to packages/vms/curlmsg_vms.h diff --git a/re2-rust/packages/vms/generate_config_vms_h_curl.com b/packages/vms/generate_config_vms_h_curl.com similarity index 100% rename from re2-rust/packages/vms/generate_config_vms_h_curl.com rename to packages/vms/generate_config_vms_h_curl.com diff --git a/re2-rust/packages/vms/generate_vax_transfer.com b/packages/vms/generate_vax_transfer.com similarity index 100% rename from re2-rust/packages/vms/generate_vax_transfer.com rename to packages/vms/generate_vax_transfer.com diff --git a/re2-rust/packages/vms/gnv_conftest.c_first b/packages/vms/gnv_conftest.c_first similarity index 100% rename from re2-rust/packages/vms/gnv_conftest.c_first rename to packages/vms/gnv_conftest.c_first diff --git a/re2-rust/packages/vms/gnv_curl_configure.sh b/packages/vms/gnv_curl_configure.sh similarity index 100% rename from re2-rust/packages/vms/gnv_curl_configure.sh rename to packages/vms/gnv_curl_configure.sh diff --git a/re2-rust/packages/vms/gnv_libcurl_symbols.opt b/packages/vms/gnv_libcurl_symbols.opt similarity index 100% rename from re2-rust/packages/vms/gnv_libcurl_symbols.opt rename to packages/vms/gnv_libcurl_symbols.opt diff --git a/re2-rust/packages/vms/gnv_link_curl.com b/packages/vms/gnv_link_curl.com similarity index 100% rename from re2-rust/packages/vms/gnv_link_curl.com rename to packages/vms/gnv_link_curl.com diff --git a/re2-rust/packages/vms/macro32_exactcase.patch b/packages/vms/macro32_exactcase.patch similarity index 100% rename from re2-rust/packages/vms/macro32_exactcase.patch rename to packages/vms/macro32_exactcase.patch diff --git a/re2-rust/packages/vms/make_gnv_curl_install.sh b/packages/vms/make_gnv_curl_install.sh similarity index 100% rename from re2-rust/packages/vms/make_gnv_curl_install.sh rename to packages/vms/make_gnv_curl_install.sh diff --git a/re2-rust/packages/vms/make_pcsi_curl_kit_name.com b/packages/vms/make_pcsi_curl_kit_name.com similarity index 100% rename from re2-rust/packages/vms/make_pcsi_curl_kit_name.com rename to packages/vms/make_pcsi_curl_kit_name.com diff --git a/re2-rust/packages/vms/pcsi_gnv_curl_file_list.txt b/packages/vms/pcsi_gnv_curl_file_list.txt similarity index 100% rename from re2-rust/packages/vms/pcsi_gnv_curl_file_list.txt rename to packages/vms/pcsi_gnv_curl_file_list.txt diff --git a/re2-rust/packages/vms/pcsi_product_gnv_curl.com b/packages/vms/pcsi_product_gnv_curl.com similarity index 100% rename from re2-rust/packages/vms/pcsi_product_gnv_curl.com rename to packages/vms/pcsi_product_gnv_curl.com diff --git a/re2-rust/packages/vms/readme b/packages/vms/readme similarity index 100% rename from re2-rust/packages/vms/readme rename to packages/vms/readme diff --git a/re2-rust/packages/vms/report_openssl_version.c b/packages/vms/report_openssl_version.c similarity index 100% rename from re2-rust/packages/vms/report_openssl_version.c rename to packages/vms/report_openssl_version.c diff --git a/re2-rust/packages/vms/setup_gnv_curl_build.com b/packages/vms/setup_gnv_curl_build.com similarity index 100% rename from re2-rust/packages/vms/setup_gnv_curl_build.com rename to packages/vms/setup_gnv_curl_build.com diff --git a/re2-rust/packages/vms/stage_curl_install.com b/packages/vms/stage_curl_install.com similarity index 100% rename from re2-rust/packages/vms/stage_curl_install.com rename to packages/vms/stage_curl_install.com diff --git a/re2-rust/packages/vms/vms_eco_level.h b/packages/vms/vms_eco_level.h similarity index 100% rename from re2-rust/packages/vms/vms_eco_level.h rename to packages/vms/vms_eco_level.h diff --git a/re2-rust/plan9/README b/plan9/README similarity index 100% rename from re2-rust/plan9/README rename to plan9/README diff --git a/re2-rust/plan9/include/mkfile b/plan9/include/mkfile similarity index 100% rename from re2-rust/plan9/include/mkfile rename to plan9/include/mkfile diff --git a/re2-rust/plan9/lib/mkfile b/plan9/lib/mkfile similarity index 100% rename from re2-rust/plan9/lib/mkfile rename to plan9/lib/mkfile diff --git a/re2-rust/plan9/lib/mkfile.inc b/plan9/lib/mkfile.inc similarity index 100% rename from re2-rust/plan9/lib/mkfile.inc rename to plan9/lib/mkfile.inc diff --git a/re2-rust/plan9/mkfile b/plan9/mkfile similarity index 100% rename from re2-rust/plan9/mkfile rename to plan9/mkfile diff --git a/re2-rust/plan9/mkfile.proto b/plan9/mkfile.proto similarity index 100% rename from re2-rust/plan9/mkfile.proto rename to plan9/mkfile.proto diff --git a/re2-rust/plan9/src/mkfile b/plan9/src/mkfile similarity index 100% rename from re2-rust/plan9/src/mkfile rename to plan9/src/mkfile diff --git a/re2-rust/plan9/src/mkfile.inc b/plan9/src/mkfile.inc similarity index 100% rename from re2-rust/plan9/src/mkfile.inc rename to plan9/src/mkfile.inc diff --git a/re2-rust/projects/README b/projects/README similarity index 100% rename from re2-rust/projects/README rename to projects/README diff --git a/re2-rust/projects/Windows/VC10/curl-all.sln b/projects/Windows/VC10/curl-all.sln similarity index 100% rename from re2-rust/projects/Windows/VC10/curl-all.sln rename to projects/Windows/VC10/curl-all.sln diff --git a/re2-rust/projects/Windows/VC10/lib/libcurl.sln b/projects/Windows/VC10/lib/libcurl.sln similarity index 100% rename from re2-rust/projects/Windows/VC10/lib/libcurl.sln rename to projects/Windows/VC10/lib/libcurl.sln diff --git a/re2-rust/projects/Windows/VC10/lib/libcurl.vcxproj b/projects/Windows/VC10/lib/libcurl.vcxproj similarity index 100% rename from re2-rust/projects/Windows/VC10/lib/libcurl.vcxproj rename to projects/Windows/VC10/lib/libcurl.vcxproj diff --git a/re2-rust/projects/Windows/VC10/lib/libcurl.vcxproj.filters b/projects/Windows/VC10/lib/libcurl.vcxproj.filters similarity index 100% rename from re2-rust/projects/Windows/VC10/lib/libcurl.vcxproj.filters rename to projects/Windows/VC10/lib/libcurl.vcxproj.filters diff --git a/re2-rust/projects/Windows/VC10/src/curl.sln b/projects/Windows/VC10/src/curl.sln similarity index 100% rename from re2-rust/projects/Windows/VC10/src/curl.sln rename to projects/Windows/VC10/src/curl.sln diff --git a/re2-rust/projects/Windows/VC10/src/curl.vcxproj b/projects/Windows/VC10/src/curl.vcxproj similarity index 100% rename from re2-rust/projects/Windows/VC10/src/curl.vcxproj rename to projects/Windows/VC10/src/curl.vcxproj diff --git a/re2-rust/projects/Windows/VC10/src/curl.vcxproj.filters b/projects/Windows/VC10/src/curl.vcxproj.filters similarity index 100% rename from re2-rust/projects/Windows/VC10/src/curl.vcxproj.filters rename to projects/Windows/VC10/src/curl.vcxproj.filters diff --git a/re2-rust/projects/Windows/VC11/curl-all.sln b/projects/Windows/VC11/curl-all.sln similarity index 100% rename from re2-rust/projects/Windows/VC11/curl-all.sln rename to projects/Windows/VC11/curl-all.sln diff --git a/re2-rust/projects/Windows/VC11/lib/libcurl.sln b/projects/Windows/VC11/lib/libcurl.sln similarity index 100% rename from re2-rust/projects/Windows/VC11/lib/libcurl.sln rename to projects/Windows/VC11/lib/libcurl.sln diff --git a/re2-rust/projects/Windows/VC11/lib/libcurl.vcxproj b/projects/Windows/VC11/lib/libcurl.vcxproj similarity index 100% rename from re2-rust/projects/Windows/VC11/lib/libcurl.vcxproj rename to projects/Windows/VC11/lib/libcurl.vcxproj diff --git a/re2-rust/projects/Windows/VC11/lib/libcurl.vcxproj.filters b/projects/Windows/VC11/lib/libcurl.vcxproj.filters similarity index 100% rename from re2-rust/projects/Windows/VC11/lib/libcurl.vcxproj.filters rename to projects/Windows/VC11/lib/libcurl.vcxproj.filters diff --git a/re2-rust/projects/Windows/VC11/src/curl.sln b/projects/Windows/VC11/src/curl.sln similarity index 100% rename from re2-rust/projects/Windows/VC11/src/curl.sln rename to projects/Windows/VC11/src/curl.sln diff --git a/re2-rust/projects/Windows/VC11/src/curl.vcxproj b/projects/Windows/VC11/src/curl.vcxproj similarity index 100% rename from re2-rust/projects/Windows/VC11/src/curl.vcxproj rename to projects/Windows/VC11/src/curl.vcxproj diff --git a/re2-rust/projects/Windows/VC11/src/curl.vcxproj.filters b/projects/Windows/VC11/src/curl.vcxproj.filters similarity index 100% rename from re2-rust/projects/Windows/VC11/src/curl.vcxproj.filters rename to projects/Windows/VC11/src/curl.vcxproj.filters diff --git a/re2-rust/projects/Windows/VC12/curl-all.sln b/projects/Windows/VC12/curl-all.sln similarity index 100% rename from re2-rust/projects/Windows/VC12/curl-all.sln rename to projects/Windows/VC12/curl-all.sln diff --git a/re2-rust/projects/Windows/VC12/lib/libcurl.sln b/projects/Windows/VC12/lib/libcurl.sln similarity index 100% rename from re2-rust/projects/Windows/VC12/lib/libcurl.sln rename to projects/Windows/VC12/lib/libcurl.sln diff --git a/re2-rust/projects/Windows/VC12/lib/libcurl.vcxproj b/projects/Windows/VC12/lib/libcurl.vcxproj similarity index 100% rename from re2-rust/projects/Windows/VC12/lib/libcurl.vcxproj rename to projects/Windows/VC12/lib/libcurl.vcxproj diff --git a/re2-rust/projects/Windows/VC12/lib/libcurl.vcxproj.filters b/projects/Windows/VC12/lib/libcurl.vcxproj.filters similarity index 100% rename from re2-rust/projects/Windows/VC12/lib/libcurl.vcxproj.filters rename to projects/Windows/VC12/lib/libcurl.vcxproj.filters diff --git a/re2-rust/projects/Windows/VC12/src/curl.sln b/projects/Windows/VC12/src/curl.sln similarity index 100% rename from re2-rust/projects/Windows/VC12/src/curl.sln rename to projects/Windows/VC12/src/curl.sln diff --git a/re2-rust/projects/Windows/VC12/src/curl.vcxproj b/projects/Windows/VC12/src/curl.vcxproj similarity index 100% rename from re2-rust/projects/Windows/VC12/src/curl.vcxproj rename to projects/Windows/VC12/src/curl.vcxproj diff --git a/re2-rust/projects/Windows/VC12/src/curl.vcxproj.filters b/projects/Windows/VC12/src/curl.vcxproj.filters similarity index 100% rename from re2-rust/projects/Windows/VC12/src/curl.vcxproj.filters rename to projects/Windows/VC12/src/curl.vcxproj.filters diff --git a/re2-rust/projects/Windows/VC14/curl-all.sln b/projects/Windows/VC14/curl-all.sln similarity index 100% rename from re2-rust/projects/Windows/VC14/curl-all.sln rename to projects/Windows/VC14/curl-all.sln diff --git a/re2-rust/projects/Windows/VC14/lib/libcurl.sln b/projects/Windows/VC14/lib/libcurl.sln similarity index 100% rename from re2-rust/projects/Windows/VC14/lib/libcurl.sln rename to projects/Windows/VC14/lib/libcurl.sln diff --git a/re2-rust/projects/Windows/VC14/lib/libcurl.vcxproj b/projects/Windows/VC14/lib/libcurl.vcxproj similarity index 100% rename from re2-rust/projects/Windows/VC14/lib/libcurl.vcxproj rename to projects/Windows/VC14/lib/libcurl.vcxproj diff --git a/re2-rust/projects/Windows/VC14/lib/libcurl.vcxproj.filters b/projects/Windows/VC14/lib/libcurl.vcxproj.filters similarity index 100% rename from re2-rust/projects/Windows/VC14/lib/libcurl.vcxproj.filters rename to projects/Windows/VC14/lib/libcurl.vcxproj.filters diff --git a/re2-rust/projects/Windows/VC14/src/curl.sln b/projects/Windows/VC14/src/curl.sln similarity index 100% rename from re2-rust/projects/Windows/VC14/src/curl.sln rename to projects/Windows/VC14/src/curl.sln diff --git a/re2-rust/projects/Windows/VC14/src/curl.vcxproj b/projects/Windows/VC14/src/curl.vcxproj similarity index 100% rename from re2-rust/projects/Windows/VC14/src/curl.vcxproj rename to projects/Windows/VC14/src/curl.vcxproj diff --git a/re2-rust/projects/Windows/VC14/src/curl.vcxproj.filters b/projects/Windows/VC14/src/curl.vcxproj.filters similarity index 100% rename from re2-rust/projects/Windows/VC14/src/curl.vcxproj.filters rename to projects/Windows/VC14/src/curl.vcxproj.filters diff --git a/re2-rust/projects/Windows/VC15/curl-all.sln b/projects/Windows/VC15/curl-all.sln similarity index 100% rename from re2-rust/projects/Windows/VC15/curl-all.sln rename to projects/Windows/VC15/curl-all.sln diff --git a/re2-rust/projects/Windows/VC15/lib/libcurl.sln b/projects/Windows/VC15/lib/libcurl.sln similarity index 100% rename from re2-rust/projects/Windows/VC15/lib/libcurl.sln rename to projects/Windows/VC15/lib/libcurl.sln diff --git a/re2-rust/projects/Windows/VC15/lib/libcurl.vcxproj b/projects/Windows/VC15/lib/libcurl.vcxproj similarity index 100% rename from re2-rust/projects/Windows/VC15/lib/libcurl.vcxproj rename to projects/Windows/VC15/lib/libcurl.vcxproj diff --git a/re2-rust/projects/Windows/VC15/lib/libcurl.vcxproj.filters b/projects/Windows/VC15/lib/libcurl.vcxproj.filters similarity index 100% rename from re2-rust/projects/Windows/VC15/lib/libcurl.vcxproj.filters rename to projects/Windows/VC15/lib/libcurl.vcxproj.filters diff --git a/re2-rust/projects/Windows/VC15/src/curl.sln b/projects/Windows/VC15/src/curl.sln similarity index 100% rename from re2-rust/projects/Windows/VC15/src/curl.sln rename to projects/Windows/VC15/src/curl.sln diff --git a/re2-rust/projects/Windows/VC15/src/curl.vcxproj b/projects/Windows/VC15/src/curl.vcxproj similarity index 100% rename from re2-rust/projects/Windows/VC15/src/curl.vcxproj rename to projects/Windows/VC15/src/curl.vcxproj diff --git a/re2-rust/projects/Windows/VC15/src/curl.vcxproj.filters b/projects/Windows/VC15/src/curl.vcxproj.filters similarity index 100% rename from re2-rust/projects/Windows/VC15/src/curl.vcxproj.filters rename to projects/Windows/VC15/src/curl.vcxproj.filters diff --git a/re2-rust/projects/Windows/VC6/curl-all.dsw b/projects/Windows/VC6/curl-all.dsw similarity index 100% rename from re2-rust/projects/Windows/VC6/curl-all.dsw rename to projects/Windows/VC6/curl-all.dsw diff --git a/re2-rust/projects/Windows/VC6/lib/libcurl.dsp b/projects/Windows/VC6/lib/libcurl.dsp similarity index 100% rename from re2-rust/projects/Windows/VC6/lib/libcurl.dsp rename to projects/Windows/VC6/lib/libcurl.dsp diff --git a/re2-rust/projects/Windows/VC6/lib/libcurl.dsw b/projects/Windows/VC6/lib/libcurl.dsw similarity index 100% rename from re2-rust/projects/Windows/VC6/lib/libcurl.dsw rename to projects/Windows/VC6/lib/libcurl.dsw diff --git a/re2-rust/projects/Windows/VC6/src/curl.dsp b/projects/Windows/VC6/src/curl.dsp similarity index 100% rename from re2-rust/projects/Windows/VC6/src/curl.dsp rename to projects/Windows/VC6/src/curl.dsp diff --git a/re2-rust/projects/Windows/VC6/src/curl.dsw b/projects/Windows/VC6/src/curl.dsw similarity index 100% rename from re2-rust/projects/Windows/VC6/src/curl.dsw rename to projects/Windows/VC6/src/curl.dsw diff --git a/re2-rust/projects/Windows/VC7.1/curl-all.sln b/projects/Windows/VC7.1/curl-all.sln similarity index 100% rename from re2-rust/projects/Windows/VC7.1/curl-all.sln rename to projects/Windows/VC7.1/curl-all.sln diff --git a/re2-rust/projects/Windows/VC7.1/lib/libcurl.sln b/projects/Windows/VC7.1/lib/libcurl.sln similarity index 100% rename from re2-rust/projects/Windows/VC7.1/lib/libcurl.sln rename to projects/Windows/VC7.1/lib/libcurl.sln diff --git a/re2-rust/projects/Windows/VC7.1/lib/libcurl.vcproj b/projects/Windows/VC7.1/lib/libcurl.vcproj similarity index 100% rename from re2-rust/projects/Windows/VC7.1/lib/libcurl.vcproj rename to projects/Windows/VC7.1/lib/libcurl.vcproj diff --git a/re2-rust/projects/Windows/VC7.1/src/curl.sln b/projects/Windows/VC7.1/src/curl.sln similarity index 100% rename from re2-rust/projects/Windows/VC7.1/src/curl.sln rename to projects/Windows/VC7.1/src/curl.sln diff --git a/re2-rust/projects/Windows/VC7.1/src/curl.vcproj b/projects/Windows/VC7.1/src/curl.vcproj similarity index 100% rename from re2-rust/projects/Windows/VC7.1/src/curl.vcproj rename to projects/Windows/VC7.1/src/curl.vcproj diff --git a/re2-rust/projects/Windows/VC7/curl-all.sln b/projects/Windows/VC7/curl-all.sln similarity index 100% rename from re2-rust/projects/Windows/VC7/curl-all.sln rename to projects/Windows/VC7/curl-all.sln diff --git a/re2-rust/projects/Windows/VC7/lib/libcurl.sln b/projects/Windows/VC7/lib/libcurl.sln similarity index 100% rename from re2-rust/projects/Windows/VC7/lib/libcurl.sln rename to projects/Windows/VC7/lib/libcurl.sln diff --git a/re2-rust/projects/Windows/VC7/lib/libcurl.vcproj b/projects/Windows/VC7/lib/libcurl.vcproj similarity index 100% rename from re2-rust/projects/Windows/VC7/lib/libcurl.vcproj rename to projects/Windows/VC7/lib/libcurl.vcproj diff --git a/re2-rust/projects/Windows/VC7/src/curl.sln b/projects/Windows/VC7/src/curl.sln similarity index 100% rename from re2-rust/projects/Windows/VC7/src/curl.sln rename to projects/Windows/VC7/src/curl.sln diff --git a/re2-rust/projects/Windows/VC7/src/curl.vcproj b/projects/Windows/VC7/src/curl.vcproj similarity index 100% rename from re2-rust/projects/Windows/VC7/src/curl.vcproj rename to projects/Windows/VC7/src/curl.vcproj diff --git a/re2-rust/projects/Windows/VC8/curl-all.sln b/projects/Windows/VC8/curl-all.sln similarity index 100% rename from re2-rust/projects/Windows/VC8/curl-all.sln rename to projects/Windows/VC8/curl-all.sln diff --git a/re2-rust/projects/Windows/VC8/lib/libcurl.sln b/projects/Windows/VC8/lib/libcurl.sln similarity index 100% rename from re2-rust/projects/Windows/VC8/lib/libcurl.sln rename to projects/Windows/VC8/lib/libcurl.sln diff --git a/re2-rust/projects/Windows/VC8/lib/libcurl.vcproj b/projects/Windows/VC8/lib/libcurl.vcproj similarity index 100% rename from re2-rust/projects/Windows/VC8/lib/libcurl.vcproj rename to projects/Windows/VC8/lib/libcurl.vcproj diff --git a/re2-rust/projects/Windows/VC8/src/curl.sln b/projects/Windows/VC8/src/curl.sln similarity index 100% rename from re2-rust/projects/Windows/VC8/src/curl.sln rename to projects/Windows/VC8/src/curl.sln diff --git a/re2-rust/projects/Windows/VC8/src/curl.vcproj b/projects/Windows/VC8/src/curl.vcproj similarity index 100% rename from re2-rust/projects/Windows/VC8/src/curl.vcproj rename to projects/Windows/VC8/src/curl.vcproj diff --git a/re2-rust/projects/Windows/VC9/curl-all.sln b/projects/Windows/VC9/curl-all.sln similarity index 100% rename from re2-rust/projects/Windows/VC9/curl-all.sln rename to projects/Windows/VC9/curl-all.sln diff --git a/re2-rust/projects/Windows/VC9/lib/libcurl.sln b/projects/Windows/VC9/lib/libcurl.sln similarity index 100% rename from re2-rust/projects/Windows/VC9/lib/libcurl.sln rename to projects/Windows/VC9/lib/libcurl.sln diff --git a/re2-rust/projects/Windows/VC9/lib/libcurl.vcproj b/projects/Windows/VC9/lib/libcurl.vcproj similarity index 100% rename from re2-rust/projects/Windows/VC9/lib/libcurl.vcproj rename to projects/Windows/VC9/lib/libcurl.vcproj diff --git a/re2-rust/projects/Windows/VC9/src/curl.sln b/projects/Windows/VC9/src/curl.sln similarity index 100% rename from re2-rust/projects/Windows/VC9/src/curl.sln rename to projects/Windows/VC9/src/curl.sln diff --git a/re2-rust/projects/Windows/VC9/src/curl.vcproj b/projects/Windows/VC9/src/curl.vcproj similarity index 100% rename from re2-rust/projects/Windows/VC9/src/curl.vcproj rename to projects/Windows/VC9/src/curl.vcproj diff --git a/re2-rust/projects/build-openssl.bat b/projects/build-openssl.bat similarity index 100% rename from re2-rust/projects/build-openssl.bat rename to projects/build-openssl.bat diff --git a/re2-rust/projects/build-wolfssl.bat b/projects/build-wolfssl.bat similarity index 100% rename from re2-rust/projects/build-wolfssl.bat rename to projects/build-wolfssl.bat diff --git a/re2-rust/projects/checksrc.bat b/projects/checksrc.bat similarity index 100% rename from re2-rust/projects/checksrc.bat rename to projects/checksrc.bat diff --git a/re2-rust/projects/generate.bat b/projects/generate.bat similarity index 100% rename from re2-rust/projects/generate.bat rename to projects/generate.bat diff --git a/re2-rust/projects/wolfssl_options.h b/projects/wolfssl_options.h similarity index 100% rename from re2-rust/projects/wolfssl_options.h rename to projects/wolfssl_options.h diff --git a/re2-rust/projects/wolfssl_override.props b/projects/wolfssl_override.props similarity index 100% rename from re2-rust/projects/wolfssl_override.props rename to projects/wolfssl_override.props diff --git a/re2-rust/.vscode/settings.json b/re2-rust/.vscode/settings.json deleted file mode 100644 index 00efd3f084b7889d59d43c0920635ae4e0ace224..0000000000000000000000000000000000000000 --- a/re2-rust/.vscode/settings.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "makefile.extensionOutputFolder": "./.vscode" -} \ No newline at end of file diff --git a/re2-rust/docs/cmdline-opts/abstract-unix-socket.d b/re2-rust/docs/cmdline-opts/abstract-unix-socket.d deleted file mode 100644 index e26048f1de06291277a727c6357b75350daeef4e..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/abstract-unix-socket.d +++ /dev/null @@ -1,11 +0,0 @@ -Long: abstract-unix-socket -Arg: -Help: Connect via abstract Unix domain socket -Added: 7.53.0 -Protocols: HTTP -Category: connection -Example: --abstract-unix-socket socketpath $URL ---- -Connect through an abstract Unix domain socket, instead of using the network. -Note: netstat shows the path of an abstract socket prefixed with '@', however -the argument should not have this leading character. diff --git a/re2-rust/docs/cmdline-opts/alt-svc.d b/re2-rust/docs/cmdline-opts/alt-svc.d deleted file mode 100644 index 914b1fbc6b79db5f7bb24338d24da9dd048e6d1c..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/alt-svc.d +++ /dev/null @@ -1,17 +0,0 @@ -Long: alt-svc -Arg: -Protocols: HTTPS -Help: Enable alt-svc with this cache file -Added: 7.64.1 -Category: http -Example: --alt-svc svc.txt $URL ---- -This option enables the alt-svc parser in curl. If the file name points to an -existing alt-svc cache file, that will be used. After a completed transfer, -the cache will be saved to the file name again if it has been modified. - -Specify a "" file name (zero length) to avoid loading/saving and make curl -just handle the cache in memory. - -If this option is used several times, curl will load contents from all the -files but the last one will be used for saving. diff --git a/re2-rust/docs/cmdline-opts/anyauth.d b/re2-rust/docs/cmdline-opts/anyauth.d deleted file mode 100644 index 427a64c89f0f89ccca850f09a921faeae137c56b..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/anyauth.d +++ /dev/null @@ -1,19 +0,0 @@ -Long: anyauth -Help: Pick any authentication method -Protocols: HTTP -See-also: proxy-anyauth basic digest -Category: http proxy auth -Example: --anyauth --user me:pwd $URL ---- -Tells curl to figure out authentication method by itself, and use the most -secure one the remote site claims to support. This is done by first doing a -request and checking the response-headers, thus possibly inducing an extra -network round-trip. This is used instead of setting a specific authentication -method, which you can do with --basic, --digest, --ntlm, and --negotiate. - -Using --anyauth is not recommended if you do uploads from stdin, since it may -require data to be sent twice and then the client must be able to rewind. If -the need should arise when uploading from stdin, the upload operation will -fail. - -Used together with --user. diff --git a/re2-rust/docs/cmdline-opts/append.d b/re2-rust/docs/cmdline-opts/append.d deleted file mode 100644 index 8afaf0eb6190138f98707b2dbfe9e77c3fee1765..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/append.d +++ /dev/null @@ -1,10 +0,0 @@ -Short: a -Long: append -Help: Append to target file when uploading -Protocols: FTP SFTP -Category: ftp sftp -Example: --upload-file local --append ftp://example.com/ ---- -When used in an upload, this makes curl append to the target file instead of -overwriting it. If the remote file doesn't exist, it will be created. Note -that this flag is ignored by some SFTP servers (including OpenSSH). diff --git a/re2-rust/docs/cmdline-opts/aws-sigv4.d b/re2-rust/docs/cmdline-opts/aws-sigv4.d deleted file mode 100644 index db988640b457e3ac55916b9ed401fa839dc7500b..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/aws-sigv4.d +++ /dev/null @@ -1,18 +0,0 @@ -Long: aws-sigv4 -Arg: -Help: Use AWS V4 signature authentication -Category: auth http -Added: 7.75.0 -Example: --aws-sigv4 "aws:amz:east-2:es" --user "key:secret" $URL ---- -Use AWS V4 signature authentication in the transfer. - -The provider argument is a string that is used by the algorithm when creating -outgoing authentication headers. - -The region argument is a string that points to a geographic area of -a resources collection (region-code) when the region name is omitted from -the endpoint. - -The service argument is a string that points to a function provided by a cloud -(service-code) when the service name is omitted from the endpoint. diff --git a/re2-rust/docs/cmdline-opts/basic.d b/re2-rust/docs/cmdline-opts/basic.d deleted file mode 100644 index 62d2c22b0adcf559dd43e7eced29981c70264d20..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/basic.d +++ /dev/null @@ -1,13 +0,0 @@ -Long: basic -Help: Use HTTP Basic Authentication -See-also: proxy-basic -Protocols: HTTP -Category: auth -Example: -u name:password --basic $URL ---- -Tells curl to use HTTP Basic authentication with the remote host. This is the -default and this option is usually pointless, unless you use it to override a -previously set option that sets a different authentication method (such as ---ntlm, --digest, or --negotiate). - -Used together with --user. diff --git a/re2-rust/docs/cmdline-opts/cacert.d b/re2-rust/docs/cmdline-opts/cacert.d deleted file mode 100644 index 1f38040461f9bdf17ea0fa26ef60e66c869150dd..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/cacert.d +++ /dev/null @@ -1,35 +0,0 @@ -Long: cacert -Arg: -Help: CA certificate to verify peer against -Protocols: TLS -Category: tls -Example: --cacert CA-file.txt $URL ---- -Tells curl to use the specified certificate file to verify the peer. The file -may contain multiple CA certificates. The certificate(s) must be in PEM -format. Normally curl is built to use a default file for this, so this option -is typically used to alter that default file. - -curl recognizes the environment variable named 'CURL_CA_BUNDLE' if it is -set, and uses the given path as a path to a CA cert bundle. This option -overrides that variable. - -The windows version of curl will automatically look for a CA certs file named -\'curl-ca-bundle.crt\', either in the same directory as curl.exe, or in the -Current Working Directory, or in any folder along your PATH. - -If curl is built against the NSS SSL library, the NSS PEM PKCS#11 module -(libnsspem.so) needs to be available for this option to work properly. - -(iOS and macOS only) If curl is built against Secure Transport, then this -option is supported for backward compatibility with other SSL engines, but it -should not be set. If the option is not set, then curl will use the -certificates in the system and user Keychain to verify the peer, which is the -preferred method of verifying the peer's certificate chain. - -(Schannel only) This option is supported for Schannel in Windows 7 or later -with libcurl 7.60 or later. This option is supported for backward -compatibility with other SSL engines; instead it is recommended to use -Windows' store of root certificates (the default for Schannel). - -If this option is used several times, the last one will be used. diff --git a/re2-rust/docs/cmdline-opts/capath.d b/re2-rust/docs/cmdline-opts/capath.d deleted file mode 100644 index ba407ed0ce1aceaf6cfda5439520d7824e9b1f64..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/capath.d +++ /dev/null @@ -1,17 +0,0 @@ -Long: capath -Arg: -Help: CA directory to verify peer against -Protocols: TLS -Category: tls -Example: --capath /local/directory $URL ---- -Tells curl to use the specified certificate directory to verify the -peer. Multiple paths can be provided by separating them with ":" (e.g. -\&"path1:path2:path3"). The certificates must be in PEM format, and if curl is -built against OpenSSL, the directory must have been processed using the -c_rehash utility supplied with OpenSSL. Using --capath can allow -OpenSSL-powered curl to make SSL-connections much more efficiently than using ---cacert if the --cacert file contains many CA certificates. - -If this option is set, the default capath value will be ignored, and if it is -used several times, the last one will be used. diff --git a/re2-rust/docs/cmdline-opts/cert-status.d b/re2-rust/docs/cmdline-opts/cert-status.d deleted file mode 100644 index 360e5c9019e3fd7498c6e6e49f9469c0339c96d4..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/cert-status.d +++ /dev/null @@ -1,15 +0,0 @@ -Long: cert-status -Protocols: TLS -Added: 7.41.0 -Help: Verify the status of the server cert via OCSP-staple -Category: tls -Example: --cert-status $URL ---- -Tells curl to verify the status of the server certificate by using the -Certificate Status Request (aka. OCSP stapling) TLS extension. - -If this option is enabled and the server sends an invalid (e.g. expired) -response, if the response suggests that the server certificate has been revoked, -or no response at all is received, the verification fails. - -This is currently only implemented in the OpenSSL, GnuTLS and NSS backends. diff --git a/re2-rust/docs/cmdline-opts/cert-type.d b/re2-rust/docs/cmdline-opts/cert-type.d deleted file mode 100644 index 9fcbfe752ae8138e6d65909cc3f9f3a11cf06f78..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/cert-type.d +++ /dev/null @@ -1,12 +0,0 @@ -Long: cert-type -Protocols: TLS -Arg: -Help: Certificate type (DER/PEM/ENG) -See-also: cert key key-type -Category: tls -Example: --cert-type PEM --cert file $URL ---- -Tells curl what type the provided client certificate is using. PEM, DER, ENG -and P12 are recognized types. If not specified, PEM is assumed. - -If this option is used several times, the last one will be used. diff --git a/re2-rust/docs/cmdline-opts/cert.d b/re2-rust/docs/cmdline-opts/cert.d deleted file mode 100644 index 8e0fb88e8e1014d72a016f54475c9f3bceda1215..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/cert.d +++ /dev/null @@ -1,52 +0,0 @@ -Short: E -Long: cert -Arg: -Help: Client certificate file and password -Protocols: TLS -See-also: cert-type key key-type -Category: tls -Example: --cert certfile --key keyfile $URL ---- -Tells curl to use the specified client certificate file when getting a file -with HTTPS, FTPS or another SSL-based protocol. The certificate must be in -PKCS#12 format if using Secure Transport, or PEM format if using any other -engine. If the optional password isn't specified, it will be queried for on -the terminal. Note that this option assumes a \&"certificate" file that is the -private key and the client certificate concatenated! See --cert and --key to -specify them independently. - -If curl is built against the NSS SSL library then this option can tell -curl the nickname of the certificate to use within the NSS database defined -by the environment variable SSL_DIR (or by default /etc/pki/nssdb). If the -NSS PEM PKCS#11 module (libnsspem.so) is available then PEM files may be -loaded. If you want to use a file from the current directory, please precede -it with "./" prefix, in order to avoid confusion with a nickname. If the -nickname contains ":", it needs to be preceded by "\\" so that it is not -recognized as password delimiter. If the nickname contains "\\", it needs to -be escaped as "\\\\" so that it is not recognized as an escape character. - -If curl is built against OpenSSL library, and the engine pkcs11 is available, -then a PKCS#11 URI (RFC 7512) can be used to specify a certificate located in -a PKCS#11 device. A string beginning with "pkcs11:" will be interpreted as a -PKCS#11 URI. If a PKCS#11 URI is provided, then the --engine option will be set -as "pkcs11" if none was provided and the --cert-type option will be set as -"ENG" if none was provided. - -(iOS and macOS only) If curl is built against Secure Transport, then the -certificate string can either be the name of a certificate/private key in the -system or user keychain, or the path to a PKCS#12-encoded certificate and -private key. If you want to use a file from the current directory, please -precede it with "./" prefix, in order to avoid confusion with a nickname. - -(Schannel only) Client certificates must be specified by a path -expression to a certificate store. (Loading PFX is not supported; you can -import it to a store first). You can use -"\\\\" to refer to a certificate -in the system certificates store, for example, -"CurrentUser\\MY\\934a7ac6f8a5d579285a74fa61e19f23ddfe8d7a". Thumbprint is -usually a SHA-1 hex string which you can see in certificate details. Following -store locations are supported: CurrentUser, LocalMachine, CurrentService, -Services, CurrentUserGroupPolicy, LocalMachineGroupPolicy, -LocalMachineEnterprise. - -If this option is used several times, the last one will be used. diff --git a/re2-rust/docs/cmdline-opts/ciphers.d b/re2-rust/docs/cmdline-opts/ciphers.d deleted file mode 100644 index c2cb92e0653ef846e3c4bfa0650f5d8f9fac1a40..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/ciphers.d +++ /dev/null @@ -1,13 +0,0 @@ -Long: ciphers -Arg: -Help: SSL ciphers to use -Protocols: TLS -Category: tls -Example: --ciphers ECDHE-ECDSA-AES256-CCM8 $URL ---- -Specifies which ciphers to use in the connection. The list of ciphers must -specify valid ciphers. Read up on SSL cipher list details on this URL: - - https://curl.se/docs/ssl-ciphers.html - -If this option is used several times, the last one will be used. diff --git a/re2-rust/docs/cmdline-opts/compressed-ssh.d b/re2-rust/docs/cmdline-opts/compressed-ssh.d deleted file mode 100644 index d95c6adfb0fece6864b4c20d9d45c3732fb2dc5d..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/compressed-ssh.d +++ /dev/null @@ -1,9 +0,0 @@ -Long: compressed-ssh -Help: Enable SSH compression -Protocols: SCP SFTP -Added: 7.56.0 -Category: scp ssh -Example: --compressed-ssh sftp://example.com/ ---- -Enables built-in SSH compression. -This is a request, not an order; the server may or may not do it. diff --git a/re2-rust/docs/cmdline-opts/compressed.d b/re2-rust/docs/cmdline-opts/compressed.d deleted file mode 100644 index 945beb85d9f763ac325390e1a45732f2978fbb4b..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/compressed.d +++ /dev/null @@ -1,12 +0,0 @@ -Long: compressed -Help: Request compressed response -Protocols: HTTP -Category: http -Example: --compressed $URL ---- -Request a compressed response using one of the algorithms curl supports, and -automatically decompress the content. Headers are not modified. - -If this option is used and the server sends an unsupported encoding, curl will -report an error. This is a request, not an order; the server may or may not -deliver data compressed. diff --git a/re2-rust/docs/cmdline-opts/config.d b/re2-rust/docs/cmdline-opts/config.d deleted file mode 100644 index 1de0b31f4dcc3ff77e941aa258448400ab27c5d1..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/config.d +++ /dev/null @@ -1,72 +0,0 @@ -Long: config -Arg: -Help: Read config from a file -Short: K -Category: curl -Example: --config file.txt $URL ---- - -Specify a text file to read curl arguments from. The command line arguments -found in the text file will be used as if they were provided on the command -line. - -Options and their parameters must be specified on the same line in the file, -separated by whitespace, colon, or the equals sign. Long option names can -optionally be given in the config file without the initial double dashes and -if so, the colon or equals characters can be used as separators. If the option -is specified with one or two dashes, there can be no colon or equals character -between the option and its parameter. - -If the parameter contains whitespace (or starts with : or =), the parameter -must be enclosed within quotes. Within double quotes, the following escape -sequences are available: \\\\, \\", \\t, \\n, \\r and \\v. A backslash -preceding any other letter is ignored. - -If the first column of a config line is a '#' character, the rest of the line -will be treated as a comment. - -Only write one option per physical line in the config file. - -Specify the filename to --config as '-' to make curl read the file from stdin. - -Note that to be able to specify a URL in the config file, you need to specify -it using the --url option, and not by simply writing the URL on its own -line. So, it could look similar to this: - -url = "https://curl.se/docs/" - -When curl is invoked, it (unless --disable is used) checks for a default -config file and uses it if found, even when this option is used. The default -config file is checked for in the following places in this order: - -1) Use the CURL_HOME environment variable if set - -2) Use the XDG_CONFIG_HOME environment variable if set (Added in 7.73.0) - -3) Use the HOME environment variable if set - -4) Non-windows: use getpwuid to find the home directory - -5) Windows: use APPDATA if set - -6) Windows: use "USERPROFILE\\Application Data" if set - -7) On windows, if there is no .curlrc file in the home dir, it checks for one -in the same dir the curl executable is placed. On Unix-like systems, it will -simply try to load .curlrc from the determined home dir. - -.nf -# --- Example file --- -# this is a comment -url = "example.com" -output = "curlhere.html" -user-agent = "superagent/1.0" - -# and fetch another URL too -url = "example.com/docs/manpage.html" --O -referer = "http://nowhereatall.example.com/" -# --- End of example file --- -.fi - -This option can be used multiple times to load multiple config files. diff --git a/re2-rust/docs/cmdline-opts/connect-timeout.d b/re2-rust/docs/cmdline-opts/connect-timeout.d deleted file mode 100644 index e66e35adfbea6c6063ef51b1f91ad2959181d273..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/connect-timeout.d +++ /dev/null @@ -1,14 +0,0 @@ -Long: connect-timeout -Arg: -Help: Maximum time allowed for connection -See-also: max-time -Category: connection -Example: --connect-timeout 20 $URL -Example: --connect-timeout 3.14 $URL ---- -Maximum time in seconds that you allow curl's connection to take. This only -limits the connection phase, so if curl connects within the given period it -will continue - if not it will exit. Since version 7.32.0, this option -accepts decimal values. - -If this option is used several times, the last one will be used. diff --git a/re2-rust/docs/cmdline-opts/connect-to.d b/re2-rust/docs/cmdline-opts/connect-to.d deleted file mode 100644 index ebea9b9daed6d79b6cedab42dbb55c0154193758..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/connect-to.d +++ /dev/null @@ -1,23 +0,0 @@ -Long: connect-to -Arg: -Help: Connect to host -Added: 7.49.0 -See-also: resolve header -Category: connection -Example: --connect-to example.com:443:example.net:8443 $URL ---- - -For a request to the given HOST1:PORT1 pair, connect to HOST2:PORT2 instead. -This option is suitable to direct requests at a specific server, e.g. at a -specific cluster node in a cluster of servers. This option is only used to -establish the network connection. It does NOT affect the hostname/port that is -used for TLS/SSL (e.g. SNI, certificate verification) or for the application -protocols. "HOST1" and "PORT1" may be the empty string, meaning "any -host/port". "HOST2" and "PORT2" may also be the empty string, meaning "use the -request's original host/port". - -A "host" specified to this option is compared as a string, so it needs to -match the name used in request URL. It can be either numerical such as -"127.0.0.1" or the full host name such as "example.org". - -This option can be used many times to add many connect rules. diff --git a/re2-rust/docs/cmdline-opts/continue-at.d b/re2-rust/docs/cmdline-opts/continue-at.d deleted file mode 100644 index 9e11bdb1234b5c2fa9912aa272cad9f8ae77b568..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/continue-at.d +++ /dev/null @@ -1,18 +0,0 @@ -Short: C -Long: continue-at -Arg: -Help: Resumed transfer offset -See-also: range -Category: connection -Example: -C - $URL -Example: -C 400 $URL ---- -Continue/Resume a previous file transfer at the given offset. The given offset -is the exact number of bytes that will be skipped, counting from the beginning -of the source file before it is transferred to the destination. If used with -uploads, the FTP server command SIZE will not be used by curl. - -Use "-C -" to tell curl to automatically find out where/how to resume the -transfer. It then uses the given output/input files to figure that out. - -If this option is used several times, the last one will be used. diff --git a/re2-rust/docs/cmdline-opts/cookie-jar.d b/re2-rust/docs/cmdline-opts/cookie-jar.d deleted file mode 100644 index f418af6d7673780b50a9108d2ad165abd64e9330..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/cookie-jar.d +++ /dev/null @@ -1,27 +0,0 @@ -Short: c -Long: cookie-jar -Arg: -Protocols: HTTP -Help: Write cookies to after operation -Category: http -Example: -c store-here.txt $URL -Example: -c store-here.txt -b read-these $URL ---- -Specify to which file you want curl to write all cookies after a completed -operation. Curl writes all cookies from its in-memory cookie storage to the -given file at the end of operations. If no cookies are known, no data will be -written. The file will be written using the Netscape cookie file format. If -you set the file name to a single dash, "-", the cookies will be written to -stdout. - -This command line option will activate the cookie engine that makes curl -record and use cookies. Another way to activate it is to use the --cookie -option. - -If the cookie jar can't be created or written to, the whole curl operation -won't fail or even report an error clearly. Using --verbose will get a warning -displayed, but that is the only visible feedback you get about this possibly -lethal situation. - -If this option is used several times, the last specified file name will be -used. diff --git a/re2-rust/docs/cmdline-opts/cookie.d b/re2-rust/docs/cmdline-opts/cookie.d deleted file mode 100644 index b593935eb77185bb2007893ad021fc5a1e686dd7..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/cookie.d +++ /dev/null @@ -1,36 +0,0 @@ -Short: b -Long: cookie -Arg: -Protocols: HTTP -Help: Send cookies from string/file -Category: http -Example: -b cookiefile $URL -Example: -b cookiefile -c cookiefile $URL ---- -Pass the data to the HTTP server in the Cookie header. It is supposedly -the data previously received from the server in a "Set-Cookie:" line. The -data should be in the format "NAME1=VALUE1; NAME2=VALUE2". - -If no '=' symbol is used in the argument, it is instead treated as a filename -to read previously stored cookie from. This option also activates the cookie -engine which will make curl record incoming cookies, which may be handy if -you're using this in combination with the --location option or do multiple URL -transfers on the same invoke. If the file name is exactly a minus ("-"), curl -will instead read the contents from stdin. - -The file format of the file to read cookies from should be plain HTTP headers -(Set-Cookie style) or the Netscape/Mozilla cookie file format. - -The file specified with --cookie is only used as input. No cookies will be -written to the file. To store cookies, use the --cookie-jar option. - -If you use the Set-Cookie file format and don't specify a domain then the -cookie is not sent since the domain will never match. To address this, set a -domain in Set-Cookie line (doing that will include sub-domains) or preferably: -use the Netscape format. - -This option can be used multiple times. - -Users very often want to both read cookies from a file and write updated -cookies back to a file, so using both --cookie and --cookie-jar in the same -command line is common. diff --git a/re2-rust/docs/cmdline-opts/create-dirs.d b/re2-rust/docs/cmdline-opts/create-dirs.d deleted file mode 100644 index cae1d5a51c32c6dd52c2da93ff05b944c3a977cd..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/create-dirs.d +++ /dev/null @@ -1,14 +0,0 @@ -Long: create-dirs -Help: Create necessary local directory hierarchy -Category: curl -Example: --create-dirs --output local/dir/file $URL ---- -When used in conjunction with the --output option, curl will create the -necessary local directory hierarchy as needed. This option creates the -directories mentioned with the --output option, nothing else. If the --output -file name uses no directory, or if the directories it mentions already exist, -no directories will be created. - -Created dirs are made with mode 0750 on unix style file systems. - -To create remote directories when using FTP or SFTP, try --ftp-create-dirs. diff --git a/re2-rust/docs/cmdline-opts/create-file-mode.d b/re2-rust/docs/cmdline-opts/create-file-mode.d deleted file mode 100644 index 429b5ee33ce40b18affcc90e34558226dbc6436c..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/create-file-mode.d +++ /dev/null @@ -1,16 +0,0 @@ -Long: create-file-mode -Arg: -Help: File mode for created files -Protocols: SFTP SCP FILE -Category: sftp scp file upload -See-also: ftp-create-dirs -Added: 7.75.0 -Example: --create-file-mode 0777 -T localfile sftp://example.com/new ---- -When curl is used to create files remotely using one of the supported -protocols, this option allows the user to set which 'mode' to set on the file -at creation time, instead of the default 0644. - -This option takes an octal number as argument. - -If this option is used several times, the last one will be used. diff --git a/re2-rust/docs/cmdline-opts/crlf.d b/re2-rust/docs/cmdline-opts/crlf.d deleted file mode 100644 index 856cd135a57c69b839b6b5bda40320989e5b6e7f..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/crlf.d +++ /dev/null @@ -1,9 +0,0 @@ -Long: crlf -Help: Convert LF to CRLF in upload -Protocols: FTP SMTP -Category: ftp smtp -Example: --crlf -T file ftp://example.com/ ---- -Convert LF to CRLF in upload. Useful for MVS (OS/390). - -(SMTP added in 7.40.0) diff --git a/re2-rust/docs/cmdline-opts/crlfile.d b/re2-rust/docs/cmdline-opts/crlfile.d deleted file mode 100644 index 21e86a8c24f79d1c8d07957286e95f3e81bc7ae7..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/crlfile.d +++ /dev/null @@ -1,12 +0,0 @@ -Long: crlfile -Arg: -Protocols: TLS -Help: Use this CRL list -Added: 7.19.7 -Category: tls -Example: --crlfile rejects.txt $URL ---- -Provide a file using PEM format with a Certificate Revocation List that may -specify peer certificates that are to be considered revoked. - -If this option is used several times, the last one will be used. diff --git a/re2-rust/docs/cmdline-opts/curves.d b/re2-rust/docs/cmdline-opts/curves.d deleted file mode 100644 index ac5ab10169389cc6e456f8ea7dcd202df7b15d68..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/curves.d +++ /dev/null @@ -1,19 +0,0 @@ -Long: curves -Arg: -Help: (EC) TLS key exchange algorithm(s) to request -Protocols: TLS -Added: 7.73.0 -Category: tls -Example: --curves X25519 $URL ---- -Tells curl to request specific curves to use during SSL session establishment -according to RFC 8422, 5.1. Multiple algorithms can be provided by separating -them with ":" (e.g. "X25519:P-521"). The parameter is available identically -in the "openssl s_client/s_server" utilities. - ---curves allows a OpenSSL powered curl to make SSL-connections with exactly -the (EC) curve requested by the client, avoiding intransparent client/server -negotiations. - -If this option is set, the default curves list built into openssl will be -ignored. diff --git a/re2-rust/docs/cmdline-opts/data-ascii.d b/re2-rust/docs/cmdline-opts/data-ascii.d deleted file mode 100644 index 943f301dd1517b96b854e0d74a5d740cd9a5bff4..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/data-ascii.d +++ /dev/null @@ -1,8 +0,0 @@ -Long: data-ascii -Arg: -Help: HTTP POST ASCII data -Protocols: HTTP -Category: http post upload -Example: --data-ascii @file $URL ---- -This is just an alias for --data. diff --git a/re2-rust/docs/cmdline-opts/data-binary.d b/re2-rust/docs/cmdline-opts/data-binary.d deleted file mode 100644 index 578cebca62caf2f4b5dc55402dc3528bd82f8be8..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/data-binary.d +++ /dev/null @@ -1,20 +0,0 @@ -Long: data-binary -Arg: -Help: HTTP POST binary data -Protocols: HTTP -Category: http post upload -Example: --data-binary @filename $URL ---- -This posts data exactly as specified with no extra processing whatsoever. - -If you start the data with the letter @, the rest should be a filename. Data -is posted in a similar manner as --data does, except that newlines and -carriage returns are preserved and conversions are never done. - -Like --data the default content-type sent to the server is -application/x-www-form-urlencoded. If you want the data to be treated as -arbitrary binary data by the server then set the content-type to octet-stream: --H "Content-Type: application/octet-stream". - -If this option is used several times, the ones following the first will append -data as described in --data. diff --git a/re2-rust/docs/cmdline-opts/data-raw.d b/re2-rust/docs/cmdline-opts/data-raw.d deleted file mode 100644 index b8cd0f72117dec56dd80ebb17c1afb59f7bd3cb7..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/data-raw.d +++ /dev/null @@ -1,12 +0,0 @@ -Long: data-raw -Arg: -Protocols: HTTP -Help: HTTP POST data, '@' allowed -Added: 7.43.0 -See-also: data -Category: http post upload -Example: --data-raw "hello" $URL -Example: --data-raw "@at@at@" $URL ---- -This posts data similarly to --data but without the special -interpretation of the @ character. diff --git a/re2-rust/docs/cmdline-opts/data-urlencode.d b/re2-rust/docs/cmdline-opts/data-urlencode.d deleted file mode 100644 index 8b12957543d16c836786aa12f5c0c35cf2653e65..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/data-urlencode.d +++ /dev/null @@ -1,38 +0,0 @@ -Long: data-urlencode -Arg: -Help: HTTP POST data url encoded -Protocols: HTTP -See-also: data data-raw -Added: 7.18.0 -Category: http post upload -Example: --data-urlencode name=val $URL -Example: --data-urlencode =encodethis $URL -Example: --data-urlencode name@file $URL -Example: --data-urlencode @fileonly $URL ---- -This posts data, similar to the other --data options with the exception -that this performs URL-encoding. - -To be CGI-compliant, the part should begin with a *name* followed -by a separator and a content specification. The part can be passed to -curl using one of the following syntaxes: -.RS -.IP "content" -This will make curl URL-encode the content and pass that on. Just be careful -so that the content doesn't contain any = or @ symbols, as that will then make -the syntax match one of the other cases below! -.IP "=content" -This will make curl URL-encode the content and pass that on. The preceding = -symbol is not included in the data. -.IP "name=content" -This will make curl URL-encode the content part and pass that on. Note that -the name part is expected to be URL-encoded already. -.IP "@filename" -This will make curl load data from the given file (including any newlines), -URL-encode that data and pass it on in the POST. -.IP "name@filename" -This will make curl load data from the given file (including any newlines), -URL-encode that data and pass it on in the POST. The name part gets an equal -sign appended, resulting in *name=urlencoded-file-content*. Note that the -name is expected to be URL-encoded already. -.RE diff --git a/re2-rust/docs/cmdline-opts/data.d b/re2-rust/docs/cmdline-opts/data.d deleted file mode 100644 index 35fd675edb43bb107a8a0c9b2be30ba1ca44a7ef..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/data.d +++ /dev/null @@ -1,33 +0,0 @@ -Long: data -Short: d -Arg: -Help: HTTP POST data -Protocols: HTTP MQTT -See-also: data-binary data-urlencode data-raw -Mutexed: form head upload-file -Category: important http post upload -Example: -d "name=curl" $URL -Example: -d "name=curl" -d "tool=cmdline" $URL -Example: -d @filename $URL ---- -Sends the specified data in a POST request to the HTTP server, in the same way -that a browser does when a user has filled in an HTML form and presses the -submit button. This will cause curl to pass the data to the server using the -content-type application/x-www-form-urlencoded. Compare to --form. - ---data-raw is almost the same but does not have a special interpretation of -the @ character. To post data purely binary, you should instead use the ---data-binary option. To URL-encode the value of a form field you may use ---data-urlencode. - -If any of these options is used more than once on the same command line, the -data pieces specified will be merged together with a separating -&-symbol. Thus, using '-d name=daniel -d skill=lousy' would generate a post -chunk that looks like \&'name=daniel&skill=lousy'. - -If you start the data with the letter @, the rest should be a file name to -read the data from, or - if you want curl to read the data from stdin. Posting -data from a file named \&'foobar' would thus be done with --data @foobar. When ---data is told to read from a file like that, carriage returns and newlines -will be stripped out. If you don't want the @ character to have a special -interpretation use --data-raw instead. diff --git a/re2-rust/docs/cmdline-opts/delegation.d b/re2-rust/docs/cmdline-opts/delegation.d deleted file mode 100644 index 1514d66bc8bbaa9d7f13df29ac24aeaa3cd628a7..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/delegation.d +++ /dev/null @@ -1,20 +0,0 @@ -Long: delegation -Arg: -Help: GSS-API delegation permission -Protocols: GSS/kerberos -Category: auth -Example: --delegation "none" $URL ---- -Set LEVEL to tell the server what it is allowed to delegate when it -comes to user credentials. -.RS -.IP "none" -Don't allow any delegation. -.IP "policy" -Delegates if and only if the OK-AS-DELEGATE flag is set in the Kerberos -service ticket, which is a matter of realm policy. -.IP "always" -Unconditionally allow the server to delegate. -.RE - -If this option is used several times, the last one will be used. diff --git a/re2-rust/docs/cmdline-opts/digest.d b/re2-rust/docs/cmdline-opts/digest.d deleted file mode 100644 index 193413777aee129980ae5299666b528c37101263..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/digest.d +++ /dev/null @@ -1,13 +0,0 @@ -Long: digest -Help: Use HTTP Digest Authentication -Protocols: HTTP -Mutexed: basic ntlm negotiate -See-also: user proxy-digest anyauth -Category: proxy auth http -Example: -u name:password --digest $URL ---- -Enables HTTP Digest authentication. This is an authentication scheme that -prevents the password from being sent over the wire in clear text. Use this in -combination with the normal --user option to set user name and password. - -If this option is used several times, only the first one is used. diff --git a/re2-rust/docs/cmdline-opts/disable-eprt.d b/re2-rust/docs/cmdline-opts/disable-eprt.d deleted file mode 100644 index 38b3e0b3812c80caef1363a72b3873d31444bb56..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/disable-eprt.d +++ /dev/null @@ -1,21 +0,0 @@ -Long: disable-eprt -Help: Inhibit using EPRT or LPRT -Protocols: FTP -Category: ftp -Example: --disable-eprt ftp://example.com/ ---- -Tell curl to disable the use of the EPRT and LPRT commands when doing active -FTP transfers. Curl will normally always first attempt to use EPRT, then LPRT -before using PORT, but with this option, it will use PORT right away. EPRT and -LPRT are extensions to the original FTP protocol, and may not work on all -servers, but they enable more functionality in a better way than the -traditional PORT command. - ---eprt can be used to explicitly enable EPRT again and --no-eprt is an alias -for --disable-eprt. - -If the server is accessed using IPv6, this option will have no effect as EPRT -is necessary then. - -Disabling EPRT only changes the active behavior. If you want to switch to -passive mode you need to not use --ftp-port or force it with --ftp-pasv. diff --git a/re2-rust/docs/cmdline-opts/disable-epsv.d b/re2-rust/docs/cmdline-opts/disable-epsv.d deleted file mode 100644 index 281ec5c9d5f4565a332b60aea8073aa3e0aff431..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/disable-epsv.d +++ /dev/null @@ -1,18 +0,0 @@ -Long: disable-epsv -Help: Inhibit using EPSV -Protocols: FTP -Category: ftp -Example: --disable-epsv ftp://example.com/ ---- -Tell curl to disable the use of the EPSV command when doing passive FTP -transfers. Curl will normally always first attempt to use EPSV before -PASV, but with this option, it will not try using EPSV. - ---epsv can be used to explicitly enable EPSV again and --no-epsv is an alias -for --disable-epsv. - -If the server is an IPv6 host, this option will have no effect as EPSV is -necessary then. - -Disabling EPSV only changes the passive behavior. If you want to switch to -active mode you need to use --ftp-port. diff --git a/re2-rust/docs/cmdline-opts/disable.d b/re2-rust/docs/cmdline-opts/disable.d deleted file mode 100644 index 3eb87f8d4dfdfad064fa28f05df34793208801f3..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/disable.d +++ /dev/null @@ -1,9 +0,0 @@ -Long: disable -Short: q -Help: Disable .curlrc -Category: curl -Example: -q $URL ---- -If used as the first parameter on the command line, the *curlrc* config -file will not be read and used. See the --config for details on the default -config file search path. diff --git a/re2-rust/docs/cmdline-opts/disallow-username-in-url.d b/re2-rust/docs/cmdline-opts/disallow-username-in-url.d deleted file mode 100644 index f3122aea56918abf511a5a8ff232d094542b9d06..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/disallow-username-in-url.d +++ /dev/null @@ -1,10 +0,0 @@ -Long: disallow-username-in-url -Help: Disallow username in url -Protocols: HTTP -Added: 7.61.0 -See-also: proto -Category: curl http -Example: --disallow-username-in-url $URL ---- -This tells curl to exit if passed a url containing a username. This is probably -most useful when the URL is being provided at run-time or similar. diff --git a/re2-rust/docs/cmdline-opts/dns-interface.d b/re2-rust/docs/cmdline-opts/dns-interface.d deleted file mode 100644 index fec7927eb6ec8edd263a75e2610511388f66bce0..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/dns-interface.d +++ /dev/null @@ -1,13 +0,0 @@ -Long: dns-interface -Arg: -Help: Interface to use for DNS requests -Protocols: DNS -See-also: dns-ipv4-addr dns-ipv6-addr -Added: 7.33.0 -Requires: c-ares -Category: dns -Example: --dns-interface eth0 $URL ---- -Tell curl to send outgoing DNS requests through . This option is a -counterpart to --interface (which does not affect DNS). The supplied string -must be an interface name (not an address). diff --git a/re2-rust/docs/cmdline-opts/dns-ipv4-addr.d b/re2-rust/docs/cmdline-opts/dns-ipv4-addr.d deleted file mode 100644 index e09153ab494d3d6293dc8598cef2309439dbd55f..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/dns-ipv4-addr.d +++ /dev/null @@ -1,15 +0,0 @@ -Long: dns-ipv4-addr -Arg:
-Help: IPv4 address to use for DNS requests -Protocols: DNS -See-also: dns-interface dns-ipv6-addr -Added: 7.33.0 -Requires: c-ares -Category: dns -Example: --dns-ipv4-addr 10.1.2.3 $URL ---- -Tell curl to bind to when making IPv4 DNS requests, so that -the DNS requests originate from this address. The argument should be a -single IPv4 address. - -If this option is used several times, the last one will be used. diff --git a/re2-rust/docs/cmdline-opts/dns-ipv6-addr.d b/re2-rust/docs/cmdline-opts/dns-ipv6-addr.d deleted file mode 100644 index 954cb98b321d1b1428c4c510b8bd12ca6ce5ab30..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/dns-ipv6-addr.d +++ /dev/null @@ -1,15 +0,0 @@ -Long: dns-ipv6-addr -Arg:
-Help: IPv6 address to use for DNS requests -Protocols: DNS -See-also: dns-interface dns-ipv4-addr -Added: 7.33.0 -Requires: c-ares -Category: dns -Example: --dns-ipv6-addr 2a04:4e42::561 $URL ---- -Tell curl to bind to when making IPv6 DNS requests, so that -the DNS requests originate from this address. The argument should be a -single IPv6 address. - -If this option is used several times, the last one will be used. diff --git a/re2-rust/docs/cmdline-opts/dns-servers.d b/re2-rust/docs/cmdline-opts/dns-servers.d deleted file mode 100644 index 089473580f8e50b8751f7f561000ddedbe97dce9..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/dns-servers.d +++ /dev/null @@ -1,14 +0,0 @@ -Long: dns-servers -Arg: -Help: DNS server addrs to use -Requires: c-ares -Added: 7.33.0 -Category: dns -Example: --dns-servers 192.168.0.1,192.168.0.2 $URL ---- -Set the list of DNS servers to be used instead of the system default. -The list of IP addresses should be separated with commas. Port numbers -may also optionally be given as *:* after each IP -address. - -If this option is used several times, the last one will be used. diff --git a/re2-rust/docs/cmdline-opts/doh-cert-status.d b/re2-rust/docs/cmdline-opts/doh-cert-status.d deleted file mode 100644 index a760a6fb1f8b9dd5e427b95183878f1ba5d4aef7..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/doh-cert-status.d +++ /dev/null @@ -1,8 +0,0 @@ -Long: doh-cert-status -Help: Verify the status of the DoH server cert via OCSP-staple -Protocols: all -Added: 7.76.0 -Category: dns tls -Example: --doh-cert-status --doh-url https://doh.example $URL ---- -Same as --cert-status but used for DoH (DNS-over-HTTPS). diff --git a/re2-rust/docs/cmdline-opts/doh-insecure.d b/re2-rust/docs/cmdline-opts/doh-insecure.d deleted file mode 100644 index 907a5dcd69ba09d071c2c2bd30097968b55cf717..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/doh-insecure.d +++ /dev/null @@ -1,8 +0,0 @@ -Long: doh-insecure -Help: Allow insecure DoH server connections -Protocols: all -Added: 7.76.0 -Category: dns tls -Example: --doh-insecure --doh-url https://doh.example $URL ---- -Same as --insecure but used for DoH (DNS-over-HTTPS). diff --git a/re2-rust/docs/cmdline-opts/doh-url.d b/re2-rust/docs/cmdline-opts/doh-url.d deleted file mode 100644 index 80ff96ccc1524904fde0a1d9b91999a78fab4516..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/doh-url.d +++ /dev/null @@ -1,17 +0,0 @@ -Long: doh-url -Arg: -Help: Resolve host names over DoH -Protocols: all -Added: 7.62.0 -Category: dns -Example: --doh-url https://doh.example $URL ---- -Specifies which DNS-over-HTTPS (DoH) server to use to resolve hostnames, -instead of using the default name resolver mechanism. The URL must be HTTPS. - -Some SSL options that you set for your transfer will apply to DoH since the -name lookups take place over SSL. However, the certificate verification -settings are not inherited and can be controlled separately via ---doh-insecure and --doh-cert-status. - -If this option is used several times, the last one will be used. diff --git a/re2-rust/docs/cmdline-opts/dump-header.d b/re2-rust/docs/cmdline-opts/dump-header.d deleted file mode 100644 index 62c92f44bba6d4ad18596b4669b9416d45db4058..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/dump-header.d +++ /dev/null @@ -1,16 +0,0 @@ -Long: dump-header -Short: D -Arg: -Help: Write the received headers to -Protocols: HTTP FTP -See-also: output -Category: http ftp -Example: --dump-header store.txt $URL ---- -Write the received protocol headers to the specified file. If no headers are -received, the use of this option will create an empty file. - -When used in FTP, the FTP server response lines are considered being "headers" -and thus are saved there. - -If this option is used several times, the last one will be used. diff --git a/re2-rust/docs/cmdline-opts/egd-file.d b/re2-rust/docs/cmdline-opts/egd-file.d deleted file mode 100644 index 2e99df4cd14cc213ff0e762bcf80380db7af65de..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/egd-file.d +++ /dev/null @@ -1,10 +0,0 @@ -Long: egd-file -Arg: -Help: EGD socket path for random data -Protocols: TLS -See-also: random-file -Category: tls -Example: --egd-file /random/here $URL ---- -Specify the path name to the Entropy Gathering Daemon socket. The socket is -used to seed the random engine for SSL connections. diff --git a/re2-rust/docs/cmdline-opts/engine.d b/re2-rust/docs/cmdline-opts/engine.d deleted file mode 100644 index 8a2dcf7463bd8705e14da9ccc65cf8752b87a696..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/engine.d +++ /dev/null @@ -1,10 +0,0 @@ -Long: engine -Arg: -Help: Crypto engine to use -Protocols: TLS -Category: tls -Example: --engine flavor $URL ---- -Select the OpenSSL crypto engine to use for cipher operations. Use --engine -list to print a list of build-time supported engines. Note that not all (and -possibly none) of the engines may be available at run-time. diff --git a/re2-rust/docs/cmdline-opts/etag-compare.d b/re2-rust/docs/cmdline-opts/etag-compare.d deleted file mode 100644 index fa16762876e08744477114ce804e61167845b4dd..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/etag-compare.d +++ /dev/null @@ -1,19 +0,0 @@ -Long: etag-compare -Arg: -Help: Pass an ETag from a file as a custom header -Protocols: HTTP -Added: 7.68.0 -Category: http -Example: --etag-compare etag.txt $URL ---- -This option makes a conditional HTTP request for the specific ETag read -from the given file by sending a custom If-None-Match header using the -stored ETag. - -For correct results, make sure that the specified file contains only a -single line with the desired ETag. An empty file is parsed as an empty -ETag. - -Use the option --etag-save to first save the ETag from a response, and -then use this option to compare against the saved ETag in a subsequent -request. diff --git a/re2-rust/docs/cmdline-opts/etag-save.d b/re2-rust/docs/cmdline-opts/etag-save.d deleted file mode 100644 index 8efad9044f0e1a02f9e30bdb64d1b8f820bec92f..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/etag-save.d +++ /dev/null @@ -1,12 +0,0 @@ -Long: etag-save -Arg: -Help: Parse ETag from a request and save it to a file -Protocols: HTTP -Added: 7.68.0 -Category: http -Example: --etag-save storetag.txt $URL ---- -This option saves an HTTP ETag to the specified file. An ETag is a -caching related header, usually returned in a response. - -If no ETag is sent by the server, an empty file is created. diff --git a/re2-rust/docs/cmdline-opts/expect100-timeout.d b/re2-rust/docs/cmdline-opts/expect100-timeout.d deleted file mode 100644 index 8855edd0b7237caaba221c46ecff9e04462b767f..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/expect100-timeout.d +++ /dev/null @@ -1,13 +0,0 @@ -Long: expect100-timeout -Arg: -Help: How long to wait for 100-continue -Protocols: HTTP -Added: 7.47.0 -See-also: connect-timeout -Category: http -Example: --expect100-timeout 2.5 -T file $URL ---- -Maximum time in seconds that you allow curl to wait for a 100-continue -response when curl emits an Expects: 100-continue header in its request. By -default curl will wait one second. This option accepts decimal values! When -curl stops waiting, it will continue as if the response has been received. diff --git a/re2-rust/docs/cmdline-opts/fail-early.d b/re2-rust/docs/cmdline-opts/fail-early.d deleted file mode 100644 index aad15c3feb8fb9d5741a30fe0d1a58092c8c0a6d..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/fail-early.d +++ /dev/null @@ -1,23 +0,0 @@ -Long: fail-early -Help: Fail on first transfer error, do not continue -Added: 7.52.0 -Category: curl -Example: --fail-early $URL https://two.example ---- -Fail and exit on the first detected transfer error. - -When curl is used to do multiple transfers on the command line, it will -attempt to operate on each given URL, one by one. By default, it will ignore -errors if there are more URLs given and the last URL's success will determine -the error code curl returns. So early failures will be "hidden" by subsequent -successful transfers. - -Using this option, curl will instead return an error on the first transfer -that fails, independent of the amount of URLs that are given on the command -line. This way, no transfer failures go undetected by scripts and similar. - -This option is global and does not need to be specified for each use of --next. - -This option does not imply --fail, which causes transfers to fail due to the -server's HTTP status code. You can combine the two options, however note --fail -is not global and is therefore contained by --next. diff --git a/re2-rust/docs/cmdline-opts/fail-with-body.d b/re2-rust/docs/cmdline-opts/fail-with-body.d deleted file mode 100644 index 9b8c7db4ef13fc72e1a09cdf2f98d3bc987c8451..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/fail-with-body.d +++ /dev/null @@ -1,16 +0,0 @@ -Long: fail-with-body -Protocols: HTTP -Help: Fail on HTTP errors but save the body -Category: http output -Added: 7.76.0 -See-also: fail -Example: --fail-with-body $URL ---- -Return an error on server errors where the HTTP response code is 400 or -greater). In normal cases when an HTTP server fails to deliver a document, it -returns an HTML document stating so (which often also describes why and -more). This flag will still allow curl to output and save that content but -also to return error 22. - -This is an alternative option to --fail which makes curl fail for the same -circumstances but without saving the content. diff --git a/re2-rust/docs/cmdline-opts/fail.d b/re2-rust/docs/cmdline-opts/fail.d deleted file mode 100644 index a5e0c91e7ede96af95379f31e7acc4ede2aeb0ca..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/fail.d +++ /dev/null @@ -1,17 +0,0 @@ -Long: fail -Short: f -Protocols: HTTP -Help: Fail silently (no output at all) on HTTP errors -See-also: fail-with-body -Category: important http -Example: --fail $URL ---- -Fail silently (no output at all) on server errors. This is mostly done to -enable scripts etc to better deal with failed attempts. In normal cases -when an HTTP server fails to deliver a document, it returns an HTML document -stating so (which often also describes why and more). This flag will prevent -curl from outputting that and return error 22. - -This method is not fail-safe and there are occasions where non-successful -response codes will slip through, especially when authentication is involved -(response codes 401 and 407). diff --git a/re2-rust/docs/cmdline-opts/false-start.d b/re2-rust/docs/cmdline-opts/false-start.d deleted file mode 100644 index de36962eea3df1f1bf2650a0c1a820f70fb890ad..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/false-start.d +++ /dev/null @@ -1,14 +0,0 @@ -Long: false-start -Help: Enable TLS False Start -Protocols: TLS -Added: 7.42.0 -Category: tls -Example: --false-start $URL ---- -Tells curl to use false start during the TLS handshake. False start is a mode -where a TLS client will start sending application data before verifying the -server's Finished message, thus saving a round trip when performing a full -handshake. - -This is currently only implemented in the NSS and Secure Transport (on iOS 7.0 -or later, or OS X 10.9 or later) backends. diff --git a/re2-rust/docs/cmdline-opts/form-string.d b/re2-rust/docs/cmdline-opts/form-string.d deleted file mode 100644 index 4f1a766bc7f522eb6304020f2c3bf9c90f848c5e..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/form-string.d +++ /dev/null @@ -1,13 +0,0 @@ -Long: form-string -Help: Specify multipart MIME data -Protocols: HTTP SMTP IMAP -Arg: -See-also: form -Category: http upload -Example: --form-string "data" $URL ---- -Similar to --form except that the value string for the named parameter is used -literally. Leading \&'@' and \&'<' characters, and the \&';type=' string in -the value have no special meaning. Use this in preference to --form if -there's any possibility that the string value may accidentally trigger the -\&'@' or \&'<' features of --form. diff --git a/re2-rust/docs/cmdline-opts/form.d b/re2-rust/docs/cmdline-opts/form.d deleted file mode 100644 index 06f2c553269489323f11bb8fc9d8eacea6fe55ed..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/form.d +++ /dev/null @@ -1,140 +0,0 @@ -Long: form -Short: F -Arg: -Help: Specify multipart MIME data -Protocols: HTTP SMTP IMAP -Mutexed: data head upload-file -Category: http upload -Example: --form "name=curl" --form "file=@loadthis" $URL ---- -For HTTP protocol family, this lets curl emulate a filled-in form in which a -user has pressed the submit button. This causes curl to POST data using the -Content-Type multipart/form-data according to RFC 2388. - -For SMTP and IMAP protocols, this is the means to compose a multipart mail -message to transmit. - -This enables uploading of binary files etc. To force the 'content' part to be -a file, prefix the file name with an @ sign. To just get the content part from -a file, prefix the file name with the symbol <. The difference between @ and < -is then that @ makes a file get attached in the post as a file upload, while -the < makes a text field and just get the contents for that text field from a -file. - -Tell curl to read content from stdin instead of a file by using - as -filename. This goes for both @ and < constructs. When stdin is used, the -contents is buffered in memory first by curl to determine its size and allow a -possible resend. Defining a part's data from a named non-regular file (such -as a named pipe or similar) is unfortunately not subject to buffering and will -be effectively read at transmission time; since the full size is unknown -before the transfer starts, such data is sent as chunks by HTTP and rejected -by IMAP. - -Example: send an image to an HTTP server, where \&'profile' is the name of the -form-field to which the file portrait.jpg will be the input: - - curl -F profile=@portrait.jpg https://example.com/upload.cgi - -Example: send your name and shoe size in two text fields to the server: - - curl -F name=John -F shoesize=11 https://example.com/ - -Example: send your essay in a text field to the server. Send it as a plain -text field, but get the contents for it from a local file: - - curl -F "story=HTML message;type=text/html' \\ -.br - -F '=)' -F '=@textfile.txt' ... smtp://example.com - -Data can be encoded for transfer using encoder=. Available encodings are -*binary* and *8bit* that do nothing else than adding the corresponding -Content-Transfer-Encoding header, *7bit* that only rejects 8-bit characters -with a transfer error, *quoted-printable* and *base64* that encodes data -according to the corresponding schemes, limiting lines length to 76 -characters. - -Example: send multipart mail with a quoted-printable text message and a -base64 attached file: - - curl -F '=text message;encoder=quoted-printable' \\ -.br - -F '=@localfile;encoder=base64' ... smtp://example.com - -See further examples and details in the MANUAL. - -This option can be used multiple times. diff --git a/re2-rust/docs/cmdline-opts/ftp-account.d b/re2-rust/docs/cmdline-opts/ftp-account.d deleted file mode 100644 index ce816f10d2b9ecf4e104b89096db912fc4a792e3..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/ftp-account.d +++ /dev/null @@ -1,12 +0,0 @@ -Long: ftp-account -Arg: -Help: Account data string -Protocols: FTP -Added: 7.13.0 -Category: ftp auth -Example: --ftp-account "mr.robot" ftp://example.com/ ---- -When an FTP server asks for "account data" after user name and password has -been provided, this data is sent off using the ACCT command. - -If this option is used several times, the last one will be used. diff --git a/re2-rust/docs/cmdline-opts/ftp-alternative-to-user.d b/re2-rust/docs/cmdline-opts/ftp-alternative-to-user.d deleted file mode 100644 index a5fb9853d22c6a2ec860d0bdea260ce11496b987..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/ftp-alternative-to-user.d +++ /dev/null @@ -1,12 +0,0 @@ -Long: ftp-alternative-to-user -Arg: -Help: String to replace USER [name] -Protocols: FTP -Added: 7.15.5 -Category: ftp -Example: --ftp-alternative-to-user "U53r" ftp://example.com ---- -If authenticating with the USER and PASS commands fails, send this command. -When connecting to Tumbleweed's Secure Transport server over FTPS using a -client certificate, using "SITE AUTH" will tell the server to retrieve the -username from the certificate. diff --git a/re2-rust/docs/cmdline-opts/ftp-create-dirs.d b/re2-rust/docs/cmdline-opts/ftp-create-dirs.d deleted file mode 100644 index 579f8e36d89ca860e9d175976d60ee1c0159baf3..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/ftp-create-dirs.d +++ /dev/null @@ -1,10 +0,0 @@ -Long: ftp-create-dirs -Protocols: FTP SFTP -Help: Create the remote dirs if not present -See-also: create-dirs -Category: ftp sftp curl -Example: --ftp-create-dirs -T file ftp://example.com/remote/path/file ---- -When an FTP or SFTP URL/operation uses a path that doesn't currently exist on -the server, the standard behavior of curl is to fail. Using this option, curl -will instead attempt to create missing directories. diff --git a/re2-rust/docs/cmdline-opts/ftp-method.d b/re2-rust/docs/cmdline-opts/ftp-method.d deleted file mode 100644 index 4af0baf4234530fff83bc4cbf9ee202062b62f90..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/ftp-method.d +++ /dev/null @@ -1,25 +0,0 @@ -Long: ftp-method -Arg: -Help: Control CWD usage -Protocols: FTP -Added: 7.15.1 -Category: ftp -Example: --ftp-method multicwd ftp://example.com/dir1/dir2/file -Example: --ftp-method nocwd ftp://example.com/dir1/dir2/file -Example: --ftp-method singlecwd ftp://example.com/dir1/dir2/file ---- -Control what method curl should use to reach a file on an FTP(S) -server. The method argument should be one of the following alternatives: -.RS -.IP multicwd -curl does a single CWD operation for each path part in the given URL. For deep -hierarchies this means very many commands. This is how RFC 1738 says it should -be done. This is the default but the slowest behavior. -.IP nocwd -curl does no CWD at all. curl will do SIZE, RETR, STOR etc and give a full -path to the server for all these commands. This is the fastest behavior. -.IP singlecwd -curl does one CWD with the full target directory and then operates on the file -\&"normally" (like in the multicwd case). This is somewhat more standards -compliant than 'nocwd' but without the full penalty of 'multicwd'. -.RE diff --git a/re2-rust/docs/cmdline-opts/ftp-pasv.d b/re2-rust/docs/cmdline-opts/ftp-pasv.d deleted file mode 100644 index d920fefa6e724c7ffa68e22ca86b82915eed4231..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/ftp-pasv.d +++ /dev/null @@ -1,18 +0,0 @@ -Long: ftp-pasv -Help: Use PASV/EPSV instead of PORT -Protocols: FTP -Added: 7.11.0 -See-also: disable-epsv -Category: ftp -Example: --ftp-pasv ftp://example.com/ ---- -Use passive mode for the data connection. Passive is the internal default -behavior, but using this option can be used to override a previous --ftp-port -option. - -If this option is used several times, only the first one is used. Undoing an -enforced passive really isn't doable but you must then instead enforce the -correct --ftp-port again. - -Passive mode means that curl will try the EPSV command first and then PASV, -unless --disable-epsv is used. diff --git a/re2-rust/docs/cmdline-opts/ftp-port.d b/re2-rust/docs/cmdline-opts/ftp-port.d deleted file mode 100644 index 52e55e58f9069624ae16713bb9aec94703778d19..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/ftp-port.d +++ /dev/null @@ -1,36 +0,0 @@ -Long: ftp-port -Arg:
-Help: Use PORT instead of PASV -Short: P -Protocols: FTP -See-also: ftp-pasv disable-eprt -Category: ftp -Example: -P - ftp:/example.com -Example: -P eth0 ftp:/example.com -Example: -P 192.168.0.2 ftp:/example.com ---- -Reverses the default initiator/listener roles when connecting with FTP. This -option makes curl use active mode. curl then tells the server to connect back -to the client's specified address and port, while passive mode asks the server -to setup an IP address and port for it to connect to.
should be one -of: -.RS -.IP interface -e.g. "eth0" to specify which interface's IP address you want to use (Unix only) -.IP "IP address" -e.g. "192.168.10.1" to specify the exact IP address -.IP "host name" -e.g. "my.host.domain" to specify the machine -.IP "-" -make curl pick the same IP address that is already used for the control -connection -.RE - -If this option is used several times, the last one will be used. Disable the -use of PORT with --ftp-pasv. Disable the attempt to use the EPRT command -instead of PORT by using --disable-eprt. EPRT is really PORT++. - -Since 7.19.5, you can append \&":[start]-[end]\&" to the right of the address, -to tell curl what TCP port range to use. That means you specify a port range, -from a lower to a higher number. A single number works as well, but do note -that it increases the risk of failure since the port may not be available. diff --git a/re2-rust/docs/cmdline-opts/ftp-pret.d b/re2-rust/docs/cmdline-opts/ftp-pret.d deleted file mode 100644 index 453d8cf85871e2a0a9d824b5d6bbe95b4c2b10f9..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/ftp-pret.d +++ /dev/null @@ -1,10 +0,0 @@ -Long: ftp-pret -Help: Send PRET before PASV -Protocols: FTP -Added: 7.20.0 -Category: ftp -Example: --ftp-pret ftp://example.com/ ---- -Tell curl to send a PRET command before PASV (and EPSV). Certain FTP servers, -mainly drftpd, require this non-standard command for directory listings as -well as up and downloads in PASV mode. diff --git a/re2-rust/docs/cmdline-opts/ftp-skip-pasv-ip.d b/re2-rust/docs/cmdline-opts/ftp-skip-pasv-ip.d deleted file mode 100644 index 36f9e6da13c608c73959fc56a71694162e946726..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/ftp-skip-pasv-ip.d +++ /dev/null @@ -1,16 +0,0 @@ -Long: ftp-skip-pasv-ip -Help: Skip the IP address for PASV -Protocols: FTP -Added: 7.14.2 -See-also: ftp-pasv -Category: ftp -Example: --ftp-skip-pasv-ip ftp://example.com/ ---- -Tell curl to not use the IP address the server suggests in its response -to curl's PASV command when curl connects the data connection. Instead curl -will re-use the same IP address it already uses for the control -connection. - -Since curl 7.74.0 this option is enabled by default. - -This option has no effect if PORT, EPRT or EPSV is used instead of PASV. diff --git a/re2-rust/docs/cmdline-opts/ftp-ssl-ccc-mode.d b/re2-rust/docs/cmdline-opts/ftp-ssl-ccc-mode.d deleted file mode 100644 index 15ad1f54b00fab4fc6e45bc64ab383e7107eac63..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/ftp-ssl-ccc-mode.d +++ /dev/null @@ -1,13 +0,0 @@ -Long: ftp-ssl-ccc-mode -Arg: -Help: Set CCC mode -Protocols: FTP -Added: 7.16.2 -See-also: ftp-ssl-ccc -Category: ftp tls -Example: --ftp-ssl-ccc-mode active --ftp-ssl-ccc ftps://example.com/ ---- -Sets the CCC mode. The passive mode will not initiate the shutdown, but -instead wait for the server to do it, and will not reply to the shutdown from -the server. The active mode initiates the shutdown and waits for a reply from -the server. diff --git a/re2-rust/docs/cmdline-opts/ftp-ssl-ccc.d b/re2-rust/docs/cmdline-opts/ftp-ssl-ccc.d deleted file mode 100644 index bfaf431bbb3dee250f9b72bb43d288ac7d18068e..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/ftp-ssl-ccc.d +++ /dev/null @@ -1,12 +0,0 @@ -Long: ftp-ssl-ccc -Help: Send CCC after authenticating -Protocols: FTP -See-also: ssl ftp-ssl-ccc-mode -Added: 7.16.1 -Category: ftp tls -Example: --ftp-ssl-ccc ftps://example.com/ ---- -Use CCC (Clear Command Channel) Shuts down the SSL/TLS layer after -authenticating. The rest of the control channel communication will be -unencrypted. This allows NAT routers to follow the FTP transaction. The -default mode is passive. diff --git a/re2-rust/docs/cmdline-opts/ftp-ssl-control.d b/re2-rust/docs/cmdline-opts/ftp-ssl-control.d deleted file mode 100644 index 72dc080bcabb03cf07900ea78c02eb3659b8fac2..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/ftp-ssl-control.d +++ /dev/null @@ -1,10 +0,0 @@ -Long: ftp-ssl-control -Help: Require SSL/TLS for FTP login, clear for transfer -Protocols: FTP -Added: 7.16.0 -Category: ftp tls -Example: --ftp-ssl-control ftp://example.com ---- -Require SSL/TLS for the FTP login, clear for transfer. Allows secure -authentication, but non-encrypted data transfers for efficiency. Fails the -transfer if the server doesn't support SSL/TLS. diff --git a/re2-rust/docs/cmdline-opts/get.d b/re2-rust/docs/cmdline-opts/get.d deleted file mode 100644 index c5fb5c94116673cc9f8e46fce527b1a3ce024a22..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/get.d +++ /dev/null @@ -1,19 +0,0 @@ -Long: get -Short: G -Help: Put the post data in the URL and use GET -Category: http upload -Example: --get $URL -Example: --get -d "tool=curl" -d "age=old" $URL -Example: --get -I -d "tool=curl" $URL ---- -When used, this option will make all data specified with --data, --data-binary -or --data-urlencode to be used in an HTTP GET request instead of the POST -request that otherwise would be used. The data will be appended to the URL -with a '?' separator. - -If used in combination with --head, the POST data will instead be appended to -the URL with a HEAD request. - -If this option is used several times, only the first one is used. This is -because undoing a GET doesn't make sense, but you should then instead enforce -the alternative method you prefer. diff --git a/re2-rust/docs/cmdline-opts/globoff.d b/re2-rust/docs/cmdline-opts/globoff.d deleted file mode 100644 index ec2c7ae48a8c56a18e5d42b5803753ec9537e8bb..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/globoff.d +++ /dev/null @@ -1,10 +0,0 @@ -Long: globoff -Short: g -Help: Disable URL sequences and ranges using {} and [] -Category: curl -Example: -g "https://example.com/{[]}}}}" ---- -This option switches off the "URL globbing parser". When you set this option, -you can specify URLs that contain the letters {}[] without having curl itself -interpret them. Note that these letters are not normal legal URL contents but -they should be encoded according to the URI standard. diff --git a/re2-rust/docs/cmdline-opts/happy-eyeballs-timeout-ms.d b/re2-rust/docs/cmdline-opts/happy-eyeballs-timeout-ms.d deleted file mode 100644 index c3b2a51322b302063d0d823a0610aaf93d1dcb50..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/happy-eyeballs-timeout-ms.d +++ /dev/null @@ -1,19 +0,0 @@ -Long: happy-eyeballs-timeout-ms -Arg: -Help: Time for IPv6 before trying IPv4 -Added: 7.59.0 -Category: connection -Example: --happy-eyeballs-timeout-ms 500 $URL ---- -Happy Eyeballs is an algorithm that attempts to connect to both IPv4 and IPv6 -addresses for dual-stack hosts, giving IPv6 a head-start of the specified -number of milliseconds. If the IPv6 address cannot be connected to within that -time, then a connection attempt is made to the IPv4 address in parallel. The -first connection to be established is the one that is used. - -The range of suggested useful values is limited. Happy Eyeballs RFC 6555 says -"It is RECOMMENDED that connection attempts be paced 150-250 ms apart to -balance human factors against network load." libcurl currently defaults to -200 ms. Firefox and Chrome currently default to 300 ms. - -If this option is used several times, the last one will be used. diff --git a/re2-rust/docs/cmdline-opts/haproxy-protocol.d b/re2-rust/docs/cmdline-opts/haproxy-protocol.d deleted file mode 100644 index 446dc657223680fcc60b2bed644e4c3e3b50632e..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/haproxy-protocol.d +++ /dev/null @@ -1,13 +0,0 @@ -Long: haproxy-protocol -Help: Send HAProxy PROXY protocol v1 header -Protocols: HTTP -Added: 7.60.0 -Category: http proxy -Example: --haproxy-protocol $URL ---- -Send a HAProxy PROXY protocol v1 header at the beginning of the -connection. This is used by some load balancers and reverse proxies to -indicate the client's true IP address and port. - -This option is primarily useful when sending test requests to a service that -expects this header. diff --git a/re2-rust/docs/cmdline-opts/head.d b/re2-rust/docs/cmdline-opts/head.d deleted file mode 100644 index 06d2489d5eaa0b52d7b18e03134074b830f14e73..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/head.d +++ /dev/null @@ -1,10 +0,0 @@ -Long: head -Short: I -Help: Show document info only -Protocols: HTTP FTP FILE -Category: http ftp file -Example: -I $URL ---- -Fetch the headers only! HTTP-servers feature the command HEAD which this uses -to get nothing but the header of a document. When used on an FTP or FILE file, -curl displays the file size and last modification time only. diff --git a/re2-rust/docs/cmdline-opts/header.d b/re2-rust/docs/cmdline-opts/header.d deleted file mode 100644 index 11c96d5eae2f4b09e6218ca56f9ed611726ca434..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/header.d +++ /dev/null @@ -1,43 +0,0 @@ -Long: header -Short: H -Arg:
-Help: Pass custom header(s) to server -Protocols: HTTP -Category: http -See-also: user-agent referer -Example: -H "X-First-Name: Joe" $URL -Example: -H "User-Agent: yes-please/2000" $URL -Example: -H "Host:" $URL ---- -Extra header to include in the request when sending HTTP to a server. You may -specify any number of extra headers. Note that if you should add a custom -header that has the same name as one of the internal ones curl would use, your -externally set header will be used instead of the internal one. This allows -you to make even trickier stuff than curl would normally do. You should not -replace internally set headers without knowing perfectly well what you're -doing. Remove an internal header by giving a replacement without content on -the right side of the colon, as in: -H \&"Host:". If you send the custom -header with no-value then its header must be terminated with a semicolon, such -as \-H \&"X-Custom-Header;" to send "X-Custom-Header:". - -curl will make sure that each header you add/replace is sent with the proper -end-of-line marker, you should thus **not** add that as a part of the header -content: do not add newlines or carriage returns, they will only mess things -up for you. - -This option can take an argument in @filename style, which then adds a header -for each line in the input file. Using @- will make curl read the header file -from stdin. Added in 7.55.0. - -You need --proxy-header to send custom headers intended for a HTTP -proxy. Added in 7.37.0. - -Passing on a "Transfer-Encoding: chunked" header when doing a HTTP request -with a request body, will make curl send the data using chunked encoding. - -**WARNING**: headers set with this option will be set in all requests - even -after redirects are followed, like when told with --location. This can lead to -the header being sent to other hosts than the original host, so sensitive -headers should be used with caution combined with following redirects. - -This option can be used multiple times to add/replace/remove multiple headers. diff --git a/re2-rust/docs/cmdline-opts/help.d b/re2-rust/docs/cmdline-opts/help.d deleted file mode 100644 index 28ae868d2ff9f730de8a971f38877e7aacd1629e..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/help.d +++ /dev/null @@ -1,13 +0,0 @@ -Long: help -Arg: -Short: h -Help: Get help for commands -Category: important curl -Example: --help all ---- -Usage help. This lists all commands of the . -If no arg was provided, curl will display the most important -command line arguments. -If the argument "all" was provided, curl will display all options available. -If the argument "category" was provided, curl will display all categories and -their meanings. diff --git a/re2-rust/docs/cmdline-opts/hostpubmd5.d b/re2-rust/docs/cmdline-opts/hostpubmd5.d deleted file mode 100644 index 833db950c7e8e6bbf912c50378417d70cefc9415..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/hostpubmd5.d +++ /dev/null @@ -1,11 +0,0 @@ -Long: hostpubmd5 -Arg: -Help: Acceptable MD5 hash of the host public key -Protocols: SFTP SCP -Added: 7.17.1 -Category: sftp scp -Example: --hostpubmd5 e5c1c49020640a5ab0f2034854c321a8 sftp://example.com/ ---- -Pass a string containing 32 hexadecimal digits. The string should -be the 128 bit MD5 checksum of the remote host's public key, curl will refuse -the connection with the host unless the md5sums match. diff --git a/re2-rust/docs/cmdline-opts/hsts.d b/re2-rust/docs/cmdline-opts/hsts.d deleted file mode 100644 index f9cd453dac6d7fcae0de38384351a731ba0b96d1..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/hsts.d +++ /dev/null @@ -1,17 +0,0 @@ -Long: hsts -Arg: -Protocols: HTTPS -Help: Enable HSTS with this cache file -Added: 7.74.0 -Category: http -Example: --hsts cache.txt $URL ---- -This option enables HSTS for the transfer. If the file name points to an -existing HSTS cache file, that will be used. After a completed transfer, the -cache will be saved to the file name again if it has been modified. - -Specify a "" file name (zero length) to avoid loading/saving and make curl -just handle HSTS in memory. - -If this option is used several times, curl will load contents from all the -files but the last one will be used for saving. diff --git a/re2-rust/docs/cmdline-opts/http0.9.d b/re2-rust/docs/cmdline-opts/http0.9.d deleted file mode 100644 index 7c45d565a8f55d3fec263a531e382c1a0e7cac40..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/http0.9.d +++ /dev/null @@ -1,15 +0,0 @@ -Long: http0.9 -Tags: Versions -Protocols: HTTP -Added: -Help: Allow HTTP 0.9 responses -Category: http -Example: --http0.9 $URL ---- -Tells curl to be fine with HTTP version 0.9 response. - -HTTP/0.9 is a completely headerless response and therefore you can also -connect with this to non-HTTP servers and still get a response since curl will -simply transparently downgrade - if allowed. - -Since curl 7.66.0, HTTP/0.9 is disabled by default. diff --git a/re2-rust/docs/cmdline-opts/http1.0.d b/re2-rust/docs/cmdline-opts/http1.0.d deleted file mode 100644 index cbfbaee40dc5ac0c17b8ab212e7ab1205c73341b..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/http1.0.d +++ /dev/null @@ -1,12 +0,0 @@ -Short: 0 -Long: http1.0 -Tags: Versions -Protocols: HTTP -Added: -Mutexed: http1.1 http2 -Help: Use HTTP 1.0 -Category: http -Example: --http1.0 $URL ---- -Tells curl to use HTTP version 1.0 instead of using its internally preferred -HTTP version. diff --git a/re2-rust/docs/cmdline-opts/http1.1.d b/re2-rust/docs/cmdline-opts/http1.1.d deleted file mode 100644 index 01fa76d332e0abfb79e63af9b84a7ebfc00d1cb9..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/http1.1.d +++ /dev/null @@ -1,10 +0,0 @@ -Long: http1.1 -Tags: Versions -Protocols: HTTP -Added: 7.33.0 -Mutexed: http1.0 http2 -Help: Use HTTP 1.1 -Category: http -Example: --http1.1 $URL ---- -Tells curl to use HTTP version 1.1. diff --git a/re2-rust/docs/cmdline-opts/http2-prior-knowledge.d b/re2-rust/docs/cmdline-opts/http2-prior-knowledge.d deleted file mode 100644 index e3b32f6ba4a259488d4d55a70c011646296c22a4..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/http2-prior-knowledge.d +++ /dev/null @@ -1,14 +0,0 @@ -Long: http2-prior-knowledge -Tags: Versions -Protocols: HTTP -Added: 7.49.0 -Mutexed: http1.1 http1.0 http2 -Requires: HTTP/2 -Help: Use HTTP 2 without HTTP/1.1 Upgrade -Category: http -Example: --http2-prior-knowledge $URL ---- -Tells curl to issue its non-TLS HTTP requests using HTTP/2 without HTTP/1.1 -Upgrade. It requires prior knowledge that the server supports HTTP/2 straight -away. HTTPS requests will still do HTTP/2 the standard way with negotiated -protocol version in the TLS handshake. diff --git a/re2-rust/docs/cmdline-opts/http2.d b/re2-rust/docs/cmdline-opts/http2.d deleted file mode 100644 index 2a85db600d756b15724d8178429b97bf85c59181..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/http2.d +++ /dev/null @@ -1,19 +0,0 @@ -Long: http2 -Tags: Versions -Protocols: HTTP -Added: 7.33.0 -Mutexed: http1.1 http1.0 http2-prior-knowledge -Requires: HTTP/2 -See-also: no-alpn -Help: Use HTTP 2 -See-also: http1.1 http3 -Category: http -Example: --http2 $URL ---- -Tells curl to use HTTP version 2. - -For HTTPS, this means curl will attempt to negotiate HTTP/2 in the TLS -handshake. curl does this by default. - -For HTTP, this means curl will attempt to upgrade the request to HTTP/2 using -the Upgrade: request header. diff --git a/re2-rust/docs/cmdline-opts/http3.d b/re2-rust/docs/cmdline-opts/http3.d deleted file mode 100644 index f6c92b39a60c8eaeca78a5f33c00cf6bda90b1d4..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/http3.d +++ /dev/null @@ -1,20 +0,0 @@ -Long: http3 -Tags: Versions -Protocols: HTTP -Added: 7.66.0 -Mutexed: http1.1 http1.0 http2 http2-prior-knowledge -Requires: HTTP/3 -Help: Use HTTP v3 -See-also: http1.1 http2 -Category: http -Example: --http3 $URL ---- -**WARNING**: this option is experimental. Do not use in production. - -Tells curl to use HTTP version 3 directly to the host and port number used in -the URL. A normal HTTP/3 transaction will be done to a host and then get -redirected via Alt-Svc, but this option allows a user to circumvent that when -you know that the target speaks HTTP/3 on the given host and port. - -This option will make curl fail if a QUIC connection cannot be established, it -cannot fall back to a lower HTTP version on its own. diff --git a/re2-rust/docs/cmdline-opts/ignore-content-length.d b/re2-rust/docs/cmdline-opts/ignore-content-length.d deleted file mode 100644 index 8a4c24754a44cf801f693868e86627c1d12099b4..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/ignore-content-length.d +++ /dev/null @@ -1,14 +0,0 @@ -Long: ignore-content-length -Help: Ignore the size of the remote resource -Protocols: FTP HTTP -Category: http ftp -Example: --ignore-content-length $URL ---- -For HTTP, Ignore the Content-Length header. This is particularly useful for -servers running Apache 1.x, which will report incorrect Content-Length for -files larger than 2 gigabytes. - -For FTP (since 7.46.0), skip the RETR command to figure out the size before -downloading a file. - -This option doesn't work for HTTP if libcurl was built to use hyper. diff --git a/re2-rust/docs/cmdline-opts/include.d b/re2-rust/docs/cmdline-opts/include.d deleted file mode 100644 index 80a05e0c86b46707df81ccee07867b279f145796..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/include.d +++ /dev/null @@ -1,12 +0,0 @@ -Long: include -Short: i -Help: Include protocol response headers in the output -See-also: verbose -Category: important verbose -Example: -i $URL ---- -Include the HTTP response headers in the output. The HTTP response headers can -include things like server name, cookies, date of the document, HTTP version -and more... - -To view the request headers, consider the --verbose option. diff --git a/re2-rust/docs/cmdline-opts/insecure.d b/re2-rust/docs/cmdline-opts/insecure.d deleted file mode 100644 index fb2c17d8bb8f9b65cb8468b8b0af73296dbad043..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/insecure.d +++ /dev/null @@ -1,19 +0,0 @@ -Long: insecure -Short: k -Help: Allow insecure server connections when using SSL -Protocols: TLS -See-also: proxy-insecure cacert -Category: tls -Example: --insecure $URL ---- -By default, every SSL connection curl makes is verified to be secure. This -option allows curl to proceed and operate even for server connections -otherwise considered insecure. - -The server connection is verified by making sure the server's certificate -contains the right name and verifies successfully using the cert store. - -See this online resource for further details: - https://curl.se/docs/sslcerts.html - -**WARNING**: this makes the transfer insecure. diff --git a/re2-rust/docs/cmdline-opts/interface.d b/re2-rust/docs/cmdline-opts/interface.d deleted file mode 100644 index b2c8eeec5ebff9eb82c9b063b2e171647a3d58f8..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/interface.d +++ /dev/null @@ -1,18 +0,0 @@ -Long: interface -Arg: -Help: Use network INTERFACE (or address) -See-also: dns-interface -Category: connection -Example: --interface eth0 $URL ---- - -Perform an operation using a specified interface. You can enter interface -name, IP address or host name. An example could look like: - - curl --interface eth0:1 https://www.example.com/ - -If this option is used several times, the last one will be used. - -On Linux it can be used to specify a VRF, but the binary needs to either -have CAP_NET_RAW or to be run as root. More information about Linux VRF: -https://www.kernel.org/doc/Documentation/networking/vrf.txt diff --git a/re2-rust/docs/cmdline-opts/ipv4.d b/re2-rust/docs/cmdline-opts/ipv4.d deleted file mode 100644 index 90a6dda007865bbde08ef42076555d7b79ad1727..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/ipv4.d +++ /dev/null @@ -1,14 +0,0 @@ -Short: 4 -Long: ipv4 -Tags: Versions -Protocols: -Added: -Mutexed: ipv6 -Requires: -See-also: http1.1 http2 -Help: Resolve names to IPv4 addresses -Category: connection dns -Example: --ipv4 $URL ---- -This option tells curl to resolve names to IPv4 addresses only, and not for -example try IPv6. diff --git a/re2-rust/docs/cmdline-opts/ipv6.d b/re2-rust/docs/cmdline-opts/ipv6.d deleted file mode 100644 index dfa79abab33bcbb13eb99ff866cd6eb8b10f09e7..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/ipv6.d +++ /dev/null @@ -1,14 +0,0 @@ -Short: 6 -Long: ipv6 -Tags: Versions -Protocols: -Added: -Mutexed: ipv4 -Requires: -See-also: http1.1 http2 -Help: Resolve names to IPv6 addresses -Category: connection dns -Example: --ipv6 $URL ---- -This option tells curl to resolve names to IPv6 addresses only, and not for -example try IPv4. diff --git a/re2-rust/docs/cmdline-opts/junk-session-cookies.d b/re2-rust/docs/cmdline-opts/junk-session-cookies.d deleted file mode 100644 index 0cc342c72010f2c1ce0b9ac1feddd1f4c8d95094..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/junk-session-cookies.d +++ /dev/null @@ -1,12 +0,0 @@ -Long: junk-session-cookies -Short: j -Help: Ignore session cookies read from file -Protocols: HTTP -See-also: cookie cookie-jar -Category: http -Example: --junk-session-cookies -b cookies.txt $URL ---- -When curl is told to read cookies from a given file, this option will make it -discard all "session cookies". This will basically have the same effect as if -a new session is started. Typical browsers always discard session cookies when -they're closed down. diff --git a/re2-rust/docs/cmdline-opts/keepalive-time.d b/re2-rust/docs/cmdline-opts/keepalive-time.d deleted file mode 100644 index 1b96c4dc5fe509d41ead20edd94e4561b5112db8..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/keepalive-time.d +++ /dev/null @@ -1,15 +0,0 @@ -Long: keepalive-time -Arg: -Help: Interval time for keepalive probes -Added: 7.18.0 -Category: connection -Example: --keepalive-time 20 $URL ---- -This option sets the time a connection needs to remain idle before sending -keepalive probes and the time between individual keepalive probes. It is -currently effective on operating systems offering the TCP_KEEPIDLE and -TCP_KEEPINTVL socket options (meaning Linux, recent AIX, HP-UX and more). This -option has no effect if --no-keepalive is used. - -If this option is used several times, the last one will be used. If -unspecified, the option defaults to 60 seconds. diff --git a/re2-rust/docs/cmdline-opts/key-type.d b/re2-rust/docs/cmdline-opts/key-type.d deleted file mode 100644 index 4baa9afa29a6b2a34b4a3e3dfee4c99d5223b191..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/key-type.d +++ /dev/null @@ -1,11 +0,0 @@ -Long: key-type -Arg: -Help: Private key file type (DER/PEM/ENG) -Protocols: TLS -Category: tls -Example: --key-type DER --key here $URL ---- -Private key file type. Specify which type your --key provided private key -is. DER, PEM, and ENG are supported. If not specified, PEM is assumed. - -If this option is used several times, the last one will be used. diff --git a/re2-rust/docs/cmdline-opts/key.d b/re2-rust/docs/cmdline-opts/key.d deleted file mode 100644 index d7f5e22a6a750755dc4cc36a8904b1cedf264b68..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/key.d +++ /dev/null @@ -1,19 +0,0 @@ -Long: key -Arg: -Protocols: TLS SSH -Help: Private key file name -Category: tls ssh -Example: --cert certificate --key here $URL ---- -Private key file name. Allows you to provide your private key in this separate -file. For SSH, if not specified, curl tries the following candidates in order: -\&'~/.ssh/id_rsa', '~/.ssh/id_dsa', './id_rsa', './id_dsa'. - -If curl is built against OpenSSL library, and the engine pkcs11 is available, -then a PKCS#11 URI (RFC 7512) can be used to specify a private key located in a -PKCS#11 device. A string beginning with "pkcs11:" will be interpreted as a -PKCS#11 URI. If a PKCS#11 URI is provided, then the --engine option will be set -as "pkcs11" if none was provided and the --key-type option will be set as -"ENG" if none was provided. - -If this option is used several times, the last one will be used. diff --git a/re2-rust/docs/cmdline-opts/krb.d b/re2-rust/docs/cmdline-opts/krb.d deleted file mode 100644 index 3d9ce999e9a43c9e30ee613f0a0b30f240e01d4c..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/krb.d +++ /dev/null @@ -1,13 +0,0 @@ -Long: krb -Arg: -Help: Enable Kerberos with security -Protocols: FTP -Requires: Kerberos -Category: ftp -Example: --krb clear ftp://example.com/ ---- -Enable Kerberos authentication and use. The level must be entered and should -be one of 'clear', 'safe', 'confidential', or 'private'. Should you use a -level that is not one of these, 'private' will instead be used. - -If this option is used several times, the last one will be used. diff --git a/re2-rust/docs/cmdline-opts/libcurl.d b/re2-rust/docs/cmdline-opts/libcurl.d deleted file mode 100644 index b7371fffe20977ccb1531c537b273f961192feeb..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/libcurl.d +++ /dev/null @@ -1,16 +0,0 @@ -Long: libcurl -Arg: -Help: Dump libcurl equivalent code of this command line -Added: 7.16.1 -Category: curl -Example: --libcurl client.c $URL ---- -Append this option to any ordinary curl command line, and you will get -libcurl-using C source code written to the file that does the equivalent -of what your command-line operation does! - -This option is global and does not need to be specified for each use of ---next. - -If this option is used several times, the last given file name will be -used. diff --git a/re2-rust/docs/cmdline-opts/limit-rate.d b/re2-rust/docs/cmdline-opts/limit-rate.d deleted file mode 100644 index 7c46e544a34be13805b7b9d27c797e30db76671f..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/limit-rate.d +++ /dev/null @@ -1,23 +0,0 @@ -Long: limit-rate -Arg: -Help: Limit transfer speed to RATE -Category: connection -Example: --limit-rate 100K $URL -Example: --limit-rate 1000 $URL -Example: --limit-rate 10M $URL ---- -Specify the maximum transfer rate you want curl to use - for both downloads -and uploads. This feature is useful if you have a limited pipe and you'd like -your transfer not to use your entire bandwidth. To make it slower than it -otherwise would be. - -The given speed is measured in bytes/second, unless a suffix is appended. -Appending 'k' or 'K' will count the number as kilobytes, 'm' or 'M' makes it -megabytes, while 'g' or 'G' makes it gigabytes. The suffixes (k, M, G, T, P) -are 1024 based. For example 1k is 1024. Examples: 200K, 3m and 1G. - -If you also use the --speed-limit option, that option will take precedence and -might cripple the rate-limiting slightly, to help keeping the speed-limit -logic working. - -If this option is used several times, the last one will be used. diff --git a/re2-rust/docs/cmdline-opts/list-only.d b/re2-rust/docs/cmdline-opts/list-only.d deleted file mode 100644 index 29f9ba2f3c3456722e5df619180d6ec7f844c296..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/list-only.d +++ /dev/null @@ -1,26 +0,0 @@ -Long: list-only -Short: l -Protocols: FTP POP3 -Help: List only mode -Added: 4.0 -Category: ftp pop3 -Example: --list-only ftp://example.com/dir/ ---- -(FTP) -When listing an FTP directory, this switch forces a name-only view. This is -especially useful if the user wants to machine-parse the contents of an FTP -directory since the normal directory view doesn't use a standard look or -format. When used like this, the option causes an NLST command to be sent to -the server instead of LIST. - -Note: Some FTP servers list only files in their response to NLST; they do not -include sub-directories and symbolic links. - -(POP3) -When retrieving a specific email from POP3, this switch forces a LIST command -to be performed instead of RETR. This is particularly useful if the user wants -to see if a specific message-id exists on the server and what size it is. - -Note: When combined with --request, this option can be used to send a UIDL -command instead, so the user may use the email's unique identifier rather than -its message-id to make the request. diff --git a/re2-rust/docs/cmdline-opts/local-port.d b/re2-rust/docs/cmdline-opts/local-port.d deleted file mode 100644 index 77664170032a2d5de617467fca0ccf0aedf13fbf..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/local-port.d +++ /dev/null @@ -1,11 +0,0 @@ -Long: local-port -Arg: -Help: Force use of RANGE for local port numbers -Added: 7.15.2 -Category: connection -Example: --local-port 1000-3000 $URL ---- -Set a preferred single number or range (FROM-TO) of local port numbers to use -for the connection(s). Note that port numbers by nature are a scarce resource -that will be busy at times so setting this range to something too narrow might -cause unnecessary connection setup failures. diff --git a/re2-rust/docs/cmdline-opts/location-trusted.d b/re2-rust/docs/cmdline-opts/location-trusted.d deleted file mode 100644 index 98c49ffe194c18722ab969f5874f56f9aa271e92..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/location-trusted.d +++ /dev/null @@ -1,11 +0,0 @@ -Long: location-trusted -Help: Like --location, and send auth to other hosts -Protocols: HTTP -See-also: user -Category: http auth -Example: --location-trusted -u user:password $URL ---- -Like --location, but will allow sending the name + password to all hosts that -the site may redirect to. This may or may not introduce a security breach if -the site redirects you to a site to which you'll send your authentication info -(which is plaintext in the case of HTTP Basic authentication). diff --git a/re2-rust/docs/cmdline-opts/location.d b/re2-rust/docs/cmdline-opts/location.d deleted file mode 100644 index 08c939c15d6ce32fcc0d64f1786f152c229c02e8..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/location.d +++ /dev/null @@ -1,27 +0,0 @@ -Long: location -Short: L -Help: Follow redirects -Protocols: HTTP -Category: http -Example: -L $URL ---- -If the server reports that the requested page has moved to a different -location (indicated with a Location: header and a 3XX response code), this -option will make curl redo the request on the new place. If used together with ---include or --head, headers from all requested pages will be shown. When -authentication is used, curl only sends its credentials to the initial -host. If a redirect takes curl to a different host, it won't be able to -intercept the user+password. See also --location-trusted on how to change -this. You can limit the amount of redirects to follow by using the ---max-redirs option. - -When curl follows a redirect and if the request is a POST, it will send the -following request with a GET if the HTTP response was 301, 302, or 303. If the -response code was any other 3xx code, curl will re-send the following request -using the same unmodified method. - -You can tell curl to not change POST requests to GET after a 30x response by -using the dedicated options for that: --post301, --post302 and --post303. - -The method set with --request overrides the method curl would otherwise select -to use. diff --git a/re2-rust/docs/cmdline-opts/login-options.d b/re2-rust/docs/cmdline-opts/login-options.d deleted file mode 100644 index de7728854e541f2f03557e9c81429a4568993c8d..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/login-options.d +++ /dev/null @@ -1,16 +0,0 @@ -Long: login-options -Arg: -Protocols: IMAP POP3 SMTP -Help: Server login options -Added: 7.34.0 -Category: imap pop3 smtp auth -Example: --login-options 'AUTH=*' imap://example.com ---- -Specify the login options to use during server authentication. - -You can use login options to specify protocol specific options that may be -used during authentication. At present only IMAP, POP3 and SMTP support -login options. For more information about login options please see RFC -2384, RFC 5092 and IETF draft draft-earhart-url-smtp-00.txt - -If this option is used several times, the last one will be used. diff --git a/re2-rust/docs/cmdline-opts/mail-auth.d b/re2-rust/docs/cmdline-opts/mail-auth.d deleted file mode 100644 index 49a02d5baa709d5af12ef17c552e9645d7144e95..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/mail-auth.d +++ /dev/null @@ -1,12 +0,0 @@ -Long: mail-auth -Arg:
-Protocols: SMTP -Help: Originator address of the original email -Added: 7.25.0 -See-also: mail-rcpt mail-from -Category: smtp -Example: --mail-auth user@example.come -T mail smtp://example.com/ ---- -Specify a single address. This will be used to specify the authentication -address (identity) of a submitted message that is being relayed to another -server. diff --git a/re2-rust/docs/cmdline-opts/mail-from.d b/re2-rust/docs/cmdline-opts/mail-from.d deleted file mode 100644 index be0547c9f2fa71a7a3966630492b0d4ab1a7ef2b..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/mail-from.d +++ /dev/null @@ -1,10 +0,0 @@ -Long: mail-from -Arg:
-Help: Mail from this address -Protocols: SMTP -Added: 7.20.0 -See-also: mail-rcpt mail-auth -Category: smtp -Example: --mail-from user@example.com -T mail smtp://example.com/ ---- -Specify a single address that the given mail should get sent from. diff --git a/re2-rust/docs/cmdline-opts/mail-rcpt-allowfails.d b/re2-rust/docs/cmdline-opts/mail-rcpt-allowfails.d deleted file mode 100644 index 36d555e17c48d3f97b64f73ba5cc388edf4db199..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/mail-rcpt-allowfails.d +++ /dev/null @@ -1,18 +0,0 @@ -Long: mail-rcpt-allowfails -Help: Allow RCPT TO command to fail for some recipients -Protocols: SMTP -Added: 7.69.0 -Category: smtp -Example: --mail-rcpt-allowfails --mail-rcpt dest@example.com smtp://example.com ---- -When sending data to multiple recipients, by default curl will abort SMTP -conversation if at least one of the recipients causes RCPT TO command to -return an error. - -The default behavior can be changed by passing --mail-rcpt-allowfails -command-line option which will make curl ignore errors and proceed with the -remaining valid recipients. - -If all recipients trigger RCPT TO failures and this flag is specified, curl -will still abort the SMTP conversation and return the error received from to -the last RCPT TO command. diff --git a/re2-rust/docs/cmdline-opts/mail-rcpt.d b/re2-rust/docs/cmdline-opts/mail-rcpt.d deleted file mode 100644 index d4a2502eea70e5c0721dc3bd5a081f968e5a1b57..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/mail-rcpt.d +++ /dev/null @@ -1,18 +0,0 @@ -Long: mail-rcpt -Arg:
-Help: Mail to this address -Protocols: SMTP -Added: 7.20.0 -Category: smtp -Example: --mail-rcpt user@example.net smtp://example.com ---- -Specify a single e-mail address, user name or mailing list name. Repeat this -option several times to send to multiple recipients. - -When performing an address verification (VRFY command), the recipient should be -specified as the user name or user name and domain (as per Section 3.5 of -RFC5321). (Added in 7.34.0) - -When performing a mailing list expand (EXPN command), the recipient should be -specified using the mailing list name, such as "Friends" or "London-Office". -(Added in 7.34.0) diff --git a/re2-rust/docs/cmdline-opts/manual.d b/re2-rust/docs/cmdline-opts/manual.d deleted file mode 100644 index c81754b7a7a608defdeed4f14c55d1b739c7ebf3..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/manual.d +++ /dev/null @@ -1,7 +0,0 @@ -Long: manual -Short: M -Help: Display the full manual -Category: curl -Example: --manual ---- -Manual. Display the huge help text. diff --git a/re2-rust/docs/cmdline-opts/max-filesize.d b/re2-rust/docs/cmdline-opts/max-filesize.d deleted file mode 100644 index 0f8aca42e2cf3a91a03c3fb771495c4968ca4e4e..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/max-filesize.d +++ /dev/null @@ -1,19 +0,0 @@ -Long: max-filesize -Arg: -Help: Maximum file size to download -Protocols: FTP HTTP MQTT -See-also: limit-rate -Category: connection -Example: --max-filesize 100K $URL ---- -Specify the maximum size (in bytes) of a file to download. If the file -requested is larger than this value, the transfer will not start and curl will -return with exit code 63. - -A size modifier may be used. For example, Appending 'k' or 'K' will count the -number as kilobytes, 'm' or 'M' makes it megabytes, while 'g' or 'G' makes it -gigabytes. Examples: 200K, 3m and 1G. (Added in 7.58.0) - -**NOTE**: The file size is not always known prior to download, and for such -files this option has no effect even if the file transfer ends up being larger -than this given limit. \ No newline at end of file diff --git a/re2-rust/docs/cmdline-opts/max-redirs.d b/re2-rust/docs/cmdline-opts/max-redirs.d deleted file mode 100644 index eade17f7bccecd8eb5a535f2cb6803ff746f4ec6..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/max-redirs.d +++ /dev/null @@ -1,12 +0,0 @@ -Long: max-redirs -Arg: -Help: Maximum number of redirects allowed -Protocols: HTTP -Category: http -Example: --max-redirs 3 --location $URL ---- -Set maximum number of redirections to follow. When --location is used, to -prevent curl from following too many redirects, by default, the limit is -set to 50 redirects. Set this option to -1 to make it unlimited. - -If this option is used several times, the last one will be used. diff --git a/re2-rust/docs/cmdline-opts/max-time.d b/re2-rust/docs/cmdline-opts/max-time.d deleted file mode 100644 index cb86fa9fcd59455cb62c32b9369739cfc3e01d3a..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/max-time.d +++ /dev/null @@ -1,16 +0,0 @@ -Long: max-time -Short: m -Arg: -Help: Maximum time allowed for transfer -See-also: connect-timeout -Category: connection -Example: --max-time 10 $URL -Example: --max-time 2.92 $URL ---- -Maximum time in seconds that you allow the whole operation to take. This is -useful for preventing your batch jobs from hanging for hours due to slow -networks or links going down. Since 7.32.0, this option accepts decimal -values, but the actual timeout will decrease in accuracy as the specified -timeout increases in decimal precision. - -If this option is used several times, the last one will be used. diff --git a/re2-rust/docs/cmdline-opts/metalink.d b/re2-rust/docs/cmdline-opts/metalink.d deleted file mode 100644 index 1fc10874213ba7783babec9ede0046280388e3b7..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/metalink.d +++ /dev/null @@ -1,8 +0,0 @@ -Long: metalink -Help: Process given URLs as metalink XML file -Added: 7.27.0 -Category: misc -Example: --metalink file $URL ---- -This option was previously used to specify a metalink resource. Metalink -support has been disabled in curl since 7.78.0 for security reasons. diff --git a/re2-rust/docs/cmdline-opts/negotiate.d b/re2-rust/docs/cmdline-opts/negotiate.d deleted file mode 100644 index e862bc82026bba6e2422d7067cc10eea953b64c5..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/negotiate.d +++ /dev/null @@ -1,17 +0,0 @@ -Long: negotiate -Help: Use HTTP Negotiate (SPNEGO) authentication -Protocols: HTTP -See-also: basic ntlm anyauth proxy-negotiate -Category: auth http -Example: --negotiate -u : $URL ---- -Enables Negotiate (SPNEGO) authentication. - -This option requires a library built with GSS-API or SSPI support. Use ---version to see if your curl supports GSS-API/SSPI or SPNEGO. - -When using this option, you must also provide a fake --user option to activate -the authentication code properly. Sending a '-u :' is enough as the user name -and password from the --user option aren't actually used. - -If this option is used several times, only the first one is used. diff --git a/re2-rust/docs/cmdline-opts/netrc-file.d b/re2-rust/docs/cmdline-opts/netrc-file.d deleted file mode 100644 index df89d51f54946b3f54bfdcb714f7e519058f839d..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/netrc-file.d +++ /dev/null @@ -1,14 +0,0 @@ -Long: netrc-file -Help: Specify FILE for netrc -Arg: -Added: 7.21.5 -Mutexed: netrc -Category: curl -Example: --netrc-file netrc $URL ---- -This option is similar to --netrc, except that you provide the path (absolute -or relative) to the netrc file that curl should use. You can only specify one -netrc file per invocation. If several --netrc-file options are provided, -the last one will be used. - -It will abide by --netrc-optional if specified. diff --git a/re2-rust/docs/cmdline-opts/netrc-optional.d b/re2-rust/docs/cmdline-opts/netrc-optional.d deleted file mode 100644 index 3869a2009b6b3e9a770253d8895fa5e1df716622..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/netrc-optional.d +++ /dev/null @@ -1,9 +0,0 @@ -Long: netrc-optional -Help: Use either .netrc or URL -Mutexed: netrc -See-also: netrc-file -Category: curl -Example: --netrc-optional $URL ---- -Very similar to --netrc, but this option makes the .netrc usage **optional** -and not mandatory as the --netrc option does. diff --git a/re2-rust/docs/cmdline-opts/netrc.d b/re2-rust/docs/cmdline-opts/netrc.d deleted file mode 100644 index 21e33a164a804f72908a650537ead7ccc4f1c3de..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/netrc.d +++ /dev/null @@ -1,19 +0,0 @@ -Long: netrc -Short: n -Help: Must read .netrc for user name and password -Category: curl -Example: --netrc $URL ---- -Makes curl scan the *.netrc* (*_netrc* on Windows) file in the user's home -directory for login name and password. This is typically used for FTP on -Unix. If used with HTTP, curl will enable user authentication. See -*netrc(5)* and *ftp(1)* for details on the file format. Curl will not -complain if that file doesn't have the right permissions (it should be -neither world- nor group-readable). The environment variable "HOME" is used -to find the home directory. - -A quick and very simple example of how to setup a *.netrc* to allow curl -to FTP to the machine host.domain.com with user name \&'myself' and password -\&'secret' should look similar to: - -.B "machine host.domain.com login myself password secret" diff --git a/re2-rust/docs/cmdline-opts/next.d b/re2-rust/docs/cmdline-opts/next.d deleted file mode 100644 index bcbad68e58a5589707a5fea0374e5d1b5d3ea595..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/next.d +++ /dev/null @@ -1,25 +0,0 @@ -Short: : -Long: next -Tags: -Protocols: -Added: 7.36.0 -Magic: divider -Help: Make next URL use its separate set of options -Category: curl -Example: $URL --next -d postthis www2.example.com -Example: -I $URL --next https://example.net/ ---- -Tells curl to use a separate operation for the following URL and associated -options. This allows you to send several URL requests, each with their own -specific options, for example, such as different user names or custom requests -for each. - ---next will reset all local options and only global ones will have their -values survive over to the operation following the --next instruction. Global -options include --verbose, --trace, --trace-ascii and --fail-early. - -For example, you can do both a GET and a POST in a single command line: - -.nf - curl www1.example.com --next -d postthis www2.example.com -.fi diff --git a/re2-rust/docs/cmdline-opts/no-alpn.d b/re2-rust/docs/cmdline-opts/no-alpn.d deleted file mode 100644 index bc620763235414806f9bf8dc777bf152e606eb2a..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/no-alpn.d +++ /dev/null @@ -1,13 +0,0 @@ -Long: no-alpn -Tags: HTTP/2 -Protocols: HTTPS -Added: 7.36.0 -See-also: no-npn http2 -Requires: TLS -Help: Disable the ALPN TLS extension -Category: tls http -Example: --no-alpn $URL ---- -Disable the ALPN TLS extension. ALPN is enabled by default if libcurl was built -with an SSL library that supports ALPN. ALPN is used by a libcurl that supports -HTTP/2 to negotiate HTTP/2 support with the server during https sessions. diff --git a/re2-rust/docs/cmdline-opts/no-buffer.d b/re2-rust/docs/cmdline-opts/no-buffer.d deleted file mode 100644 index fe8da4e9645e33e3ca862ef28c50f11733ee919a..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/no-buffer.d +++ /dev/null @@ -1,13 +0,0 @@ -Long: no-buffer -Short: N -Help: Disable buffering of the output stream -Category: curl -Example: --no-buffer $URL ---- -Disables the buffering of the output stream. In normal work situations, curl -will use a standard buffered output stream that will have the effect that it -will output the data in chunks, not necessarily exactly when the data arrives. -Using this option will disable that buffering. - -Note that this is the negated option name documented. You can thus use ---buffer to enforce the buffering. diff --git a/re2-rust/docs/cmdline-opts/no-keepalive.d b/re2-rust/docs/cmdline-opts/no-keepalive.d deleted file mode 100644 index a264b7ac586c466405520e97e63852fc21278e44..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/no-keepalive.d +++ /dev/null @@ -1,10 +0,0 @@ -Long: no-keepalive -Help: Disable TCP keepalive on the connection -Category: connection -Example: --no-keepalive $URL ---- -Disables the use of keepalive messages on the TCP connection. curl otherwise -enables them by default. - -Note that this is the negated option name documented. You can thus use ---keepalive to enforce keepalive. diff --git a/re2-rust/docs/cmdline-opts/no-npn.d b/re2-rust/docs/cmdline-opts/no-npn.d deleted file mode 100644 index 7a9239d361c6b2d554167f8acf5fb2b35de881af..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/no-npn.d +++ /dev/null @@ -1,14 +0,0 @@ -Long: no-npn -Tags: Versions HTTP/2 -Protocols: HTTPS -Added: 7.36.0 -Mutexed: -See-also: no-alpn http2 -Requires: TLS -Help: Disable the NPN TLS extension -Category: tls http -Example: --no-npn $URL ---- -Disable the NPN TLS extension. NPN is enabled by default if libcurl was built -with an SSL library that supports NPN. NPN is used by a libcurl that supports -HTTP/2 to negotiate HTTP/2 support with the server during https sessions. diff --git a/re2-rust/docs/cmdline-opts/no-progress-meter.d b/re2-rust/docs/cmdline-opts/no-progress-meter.d deleted file mode 100644 index 9c7413eeb9d160bf857ce854b4d5618970bbdbf8..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/no-progress-meter.d +++ /dev/null @@ -1,12 +0,0 @@ -Long: no-progress-meter -Help: Do not show the progress meter -See-also: verbose silent -Added: 7.67.0 -Category: verbose -Example: --no-progress-meter -o store $URL ---- -Option to switch off the progress meter output without muting or otherwise -affecting warning and informational messages like --silent does. - -Note that this is the negated option name documented. You can thus use ---progress-meter to enable the progress meter again. diff --git a/re2-rust/docs/cmdline-opts/no-sessionid.d b/re2-rust/docs/cmdline-opts/no-sessionid.d deleted file mode 100644 index 70a32210ecddc3fa8664f5a3a6acda6161f75b08..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/no-sessionid.d +++ /dev/null @@ -1,15 +0,0 @@ -Long: no-sessionid -Help: Disable SSL session-ID reusing -Protocols: TLS -Added: 7.16.0 -Category: tls -Example: --no-sessionid $URL ---- -Disable curl's use of SSL session-ID caching. By default all transfers are -done using the cache. Note that while nothing should ever get hurt by -attempting to reuse SSL session-IDs, there seem to be broken SSL -implementations in the wild that may require you to disable this in order for -you to succeed. - -Note that this is the negated option name documented. You can thus use ---sessionid to enforce session-ID caching. diff --git a/re2-rust/docs/cmdline-opts/noproxy.d b/re2-rust/docs/cmdline-opts/noproxy.d deleted file mode 100644 index ee0978e03997f5c0781658b75e2197b45dd4ce17..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/noproxy.d +++ /dev/null @@ -1,17 +0,0 @@ -Long: noproxy -Arg: -Help: List of hosts which do not use proxy -Added: 7.19.4 -Category: proxy -Example: --noproxy "www.example" $URL ---- -Comma-separated list of hosts for which not to use a proxy, if one is -specified. The only wildcard is a single * character, which matches all hosts, -and effectively disables the proxy. Each name in this list is matched as -either a domain which contains the hostname, or the hostname itself. For -example, local.com would match local.com, local.com:80, and www.local.com, but -not www.notlocal.com. - -Since 7.53.0, This option overrides the environment variables that disable the -proxy ('no_proxy' and 'NO_PROXY'). If there's an environment variable -disabling a proxy, you can set the noproxy list to \&"" to override it. diff --git a/re2-rust/docs/cmdline-opts/ntlm-wb.d b/re2-rust/docs/cmdline-opts/ntlm-wb.d deleted file mode 100644 index 890137062cc7cbaef747c74ac26c40acc6b82c54..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/ntlm-wb.d +++ /dev/null @@ -1,9 +0,0 @@ -Long: ntlm-wb -Help: Use HTTP NTLM authentication with winbind -Protocols: HTTP -See-also: ntlm proxy-ntlm -Category: auth http -Example: --ntlm-wb -u user:password $URL ---- -Enables NTLM much in the style --ntlm does, but hand over the authentication -to the separate binary ntlmauth application that is executed when needed. diff --git a/re2-rust/docs/cmdline-opts/ntlm.d b/re2-rust/docs/cmdline-opts/ntlm.d deleted file mode 100644 index 5a50632678b26a1c002fadfff7b481d29d7b9a73..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/ntlm.d +++ /dev/null @@ -1,20 +0,0 @@ -Long: ntlm -Help: Use HTTP NTLM authentication -Mutexed: basic negotiate digest anyauth -See-also: proxy-ntlm -Protocols: HTTP -Requires: TLS -Category: auth http -Example: --ntlm -u user:password $URL ---- -Enables NTLM authentication. The NTLM authentication method was designed by -Microsoft and is used by IIS web servers. It is a proprietary protocol, -reverse-engineered by clever people and implemented in curl based on their -efforts. This kind of behavior should not be endorsed, you should encourage -everyone who uses NTLM to switch to a public and documented authentication -method instead, such as Digest. - -If you want to enable NTLM for your proxy authentication, then use ---proxy-ntlm. - -If this option is used several times, only the first one is used. diff --git a/re2-rust/docs/cmdline-opts/oauth2-bearer.d b/re2-rust/docs/cmdline-opts/oauth2-bearer.d deleted file mode 100644 index 1662a366cd669fbc18db1e6296eab9abea518aa2..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/oauth2-bearer.d +++ /dev/null @@ -1,14 +0,0 @@ -Long: oauth2-bearer -Help: OAuth 2 Bearer Token -Arg: -Protocols: IMAP POP3 SMTP HTTP -Category: auth -Example: --oauth2-bearer "mF_9.B5f-4.1JqM" $URL ---- -Specify the Bearer Token for OAUTH 2.0 server authentication. The Bearer Token -is used in conjunction with the user name which can be specified as part of -the --url or --user options. - -The Bearer Token and user name are formatted according to RFC 6750. - -If this option is used several times, the last one will be used. diff --git a/re2-rust/docs/cmdline-opts/output-dir.d b/re2-rust/docs/cmdline-opts/output-dir.d deleted file mode 100644 index 1664f4590f3a8ebe05660299789e4a61b36958fe..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/output-dir.d +++ /dev/null @@ -1,20 +0,0 @@ -Long: output-dir -Arg: -Help: Directory to save files in -Added: 7.73.0 -See-also: remote-name remote-header-name -Category: curl -Example: --output-dir "tmp" -O $URL ---- - -This option specifies the directory in which files should be stored, when ---remote-name or --output are used. - -The given output directory is used for all URLs and output options on the -command line, up until the first --next. - -If the specified target directory doesn't exist, the operation will fail -unless --create-dirs is also used. - -If this option is used multiple times, the last specified directory will be -used. diff --git a/re2-rust/docs/cmdline-opts/output.d b/re2-rust/docs/cmdline-opts/output.d deleted file mode 100644 index ce9749d5db7c768ec7ced5ad476b55b012c297de..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/output.d +++ /dev/null @@ -1,45 +0,0 @@ -Long: output -Arg: -Short: o -Help: Write to file instead of stdout -See-also: remote-name remote-name-all remote-header-name -Category: important curl -Example: -o file $URL -Example: "http://{one,two}.example.com" -o "file_#1.txt" -Example: "http://{site,host}.host[1-5].com" -o "#1_#2" -Example: -o file $URL -o file2 https://example.net ---- -Write output to instead of stdout. If you are using {} or [] to fetch -multiple documents, you should quote the URL and you can use '#' followed by a -number in the specifier. That variable will be replaced with the current -string for the URL being fetched. Like in: - - curl "http://{one,two}.example.com" -o "file_#1.txt" - -or use several variables like: - - curl "http://{site,host}.host[1-5].com" -o "#1_#2" - -You may use this option as many times as the number of URLs you have. For -example, if you specify two URLs on the same command line, you can use it like -this: - - curl -o aa example.com -o bb example.net - -and the order of the -o options and the URLs doesn't matter, just that the -first -o is for the first URL and so on, so the above command line can also be -written as - - curl example.com example.net -o aa -o bb - -See also the --create-dirs option to create the local directories -dynamically. Specifying the output as '-' (a single dash) will force the -output to be done to stdout. - -To suppress response bodies, you can redirect output to /dev/null: - - curl example.com -o /dev/null - -Or for Windows use nul: - - curl example.com -o nul diff --git a/re2-rust/docs/cmdline-opts/parallel-immediate.d b/re2-rust/docs/cmdline-opts/parallel-immediate.d deleted file mode 100644 index 4f7468de658df107006bf977b923e37c91b8cced..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/parallel-immediate.d +++ /dev/null @@ -1,14 +0,0 @@ -Long: parallel-immediate -Help: Do not wait for multiplexing (with --parallel) -Added: 7.68.0 -See-also: parallel parallel-max -Category: connection curl -Example: --parallel-immediate -Z $URL -o file1 $URL -o file2 ---- -When doing parallel transfers, this option will instruct curl that it should -rather prefer opening up more connections in parallel at once rather than -waiting to see if new transfers can be added as multiplexed streams on another -connection. - -This option is global and does not need to be specified for each use of ---next. diff --git a/re2-rust/docs/cmdline-opts/parallel-max.d b/re2-rust/docs/cmdline-opts/parallel-max.d deleted file mode 100644 index 1f22fcb7d23af9ea5033048fceccabe10b545455..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/parallel-max.d +++ /dev/null @@ -1,15 +0,0 @@ -Long: parallel-max -Arg: -Help: Maximum concurrency for parallel transfers -Added: 7.66.0 -See-also: parallel -Category: connection curl -Example: --parallel-max 100 -Z $URL ftp://example.com/ ---- -When asked to do parallel transfers, using --parallel, this option controls -the maximum amount of transfers to do simultaneously. - -This option is global and does not need to be specified for each use of ---next. - -The default is 50. diff --git a/re2-rust/docs/cmdline-opts/parallel.d b/re2-rust/docs/cmdline-opts/parallel.d deleted file mode 100644 index 2a0ca4340fec9c76e634549377741ca2e214b228..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/parallel.d +++ /dev/null @@ -1,12 +0,0 @@ -Short: Z -Long: parallel -Help: Perform transfers in parallel -Added: 7.66.0 -Category: connection curl -Example: --parallel $URL -o file1 $URL -o file2 ---- -Makes curl perform its transfers in parallel as compared to the regular serial -manner. - -This option is global and does not need to be specified for each use of ---next. diff --git a/re2-rust/docs/cmdline-opts/pass.d b/re2-rust/docs/cmdline-opts/pass.d deleted file mode 100644 index 58e355827ba4d46b75d4559b923d951261feaa8f..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/pass.d +++ /dev/null @@ -1,10 +0,0 @@ -Long: pass -Arg: -Help: Pass phrase for the private key -Protocols: SSH TLS -Category: ssh tls auth -Example: --pass secret --key file $URL ---- -Passphrase for the private key. - -If this option is used several times, the last one will be used. diff --git a/re2-rust/docs/cmdline-opts/path-as-is.d b/re2-rust/docs/cmdline-opts/path-as-is.d deleted file mode 100644 index fb87def947c26d52e56dc22c4a0d5e9b5f1a40ae..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/path-as-is.d +++ /dev/null @@ -1,9 +0,0 @@ -Long: path-as-is -Help: Do not squash .. sequences in URL path -Added: 7.42.0 -Category: curl -Example: --path-as-is https://example.com/../../etc/passwd ---- -Tell curl to not handle sequences of /../ or /./ in the given URL -path. Normally curl will squash or merge them according to standards but with -this option set you tell it not to do that. diff --git a/re2-rust/docs/cmdline-opts/pinnedpubkey.d b/re2-rust/docs/cmdline-opts/pinnedpubkey.d deleted file mode 100644 index dc98b29f846adce2aff8ebbc5dec795a72424460..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/pinnedpubkey.d +++ /dev/null @@ -1,35 +0,0 @@ -Long: pinnedpubkey -Arg: -Help: FILE/HASHES Public key to verify peer against -Protocols: TLS -Category: tls -Example: --pinnedpubkey keyfile $URL -Example: --pinnedpubkey 'sha256//ce118b51897f4452dc' $URL ---- -Tells curl to use the specified public key file (or hashes) to verify the -peer. This can be a path to a file which contains a single public key in PEM -or DER format, or any number of base64 encoded sha256 hashes preceded by -\'sha256//\' and separated by \';\' - -When negotiating a TLS or SSL connection, the server sends a certificate -indicating its identity. A public key is extracted from this certificate and -if it does not exactly match the public key provided to this option, curl will -abort the connection before sending or receiving any data. - -PEM/DER support: - -7.39.0: OpenSSL, GnuTLS and GSKit - -7.43.0: NSS and wolfSSL - -7.47.0: mbedtls - -sha256 support: - -7.44.0: OpenSSL, GnuTLS, NSS and wolfSSL - -7.47.0: mbedtls - -Other SSL backends not supported. - -If this option is used several times, the last one will be used. diff --git a/re2-rust/docs/cmdline-opts/post301.d b/re2-rust/docs/cmdline-opts/post301.d deleted file mode 100644 index 744ef5813ad727324f0066e694ce130911e2e173..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/post301.d +++ /dev/null @@ -1,13 +0,0 @@ -Long: post301 -Help: Do not switch to GET after following a 301 -Protocols: HTTP -See-also: post302 post303 location -Added: 7.17.1 -Category: http post -Example: --post301 --location -d "data" $URL ---- -Tells curl to respect RFC 7231/6.4.2 and not convert POST requests into GET -requests when following a 301 redirection. The non-RFC behavior is ubiquitous -in web browsers, so curl does the conversion by default to maintain -consistency. However, a server may require a POST to remain a POST after such -a redirection. This option is meaningful only when using --location. diff --git a/re2-rust/docs/cmdline-opts/post302.d b/re2-rust/docs/cmdline-opts/post302.d deleted file mode 100644 index 2c6d4b615c56f1c85782091e33b2e473a51fa31b..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/post302.d +++ /dev/null @@ -1,13 +0,0 @@ -Long: post302 -Help: Do not switch to GET after following a 302 -Protocols: HTTP -See-also: post301 post303 location -Added: 7.19.1 -Category: http post -Example: --post302 --location -d "data" $URL ---- -Tells curl to respect RFC 7231/6.4.3 and not convert POST requests into GET -requests when following a 302 redirection. The non-RFC behavior is ubiquitous -in web browsers, so curl does the conversion by default to maintain -consistency. However, a server may require a POST to remain a POST after such -a redirection. This option is meaningful only when using --location. diff --git a/re2-rust/docs/cmdline-opts/post303.d b/re2-rust/docs/cmdline-opts/post303.d deleted file mode 100644 index a2fec18c4be196187e352ea55635912f4354bae5..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/post303.d +++ /dev/null @@ -1,12 +0,0 @@ -Long: post303 -Help: Do not switch to GET after following a 303 -Protocols: HTTP -See-also: post302 post301 location -Added: 7.26.0 -Category: http post -Example: --post303 --location -d "data" $URL ---- -Tells curl to violate RFC 7231/6.4.4 and not convert POST requests into GET -requests when following 303 redirections. A server may require a POST to -remain a POST after a 303 redirection. This option is meaningful only when -using --location. diff --git a/re2-rust/docs/cmdline-opts/preproxy.d b/re2-rust/docs/cmdline-opts/preproxy.d deleted file mode 100644 index c91565c0e78773fe502273b8a5910c736a1e68f1..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/preproxy.d +++ /dev/null @@ -1,24 +0,0 @@ -Long: preproxy -Arg: [protocol://]host[:port] -Help: Use this proxy first -Added: 7.52.0 -Category: proxy -Example: --preproxy socks5://proxy.example -x http://http.example $URL ---- -Use the specified SOCKS proxy before connecting to an HTTP or HTTPS --proxy. In -such a case curl first connects to the SOCKS proxy and then connects (through -SOCKS) to the HTTP or HTTPS proxy. Hence pre proxy. - -The pre proxy string should be specified with a protocol:// prefix to specify -alternative proxy protocols. Use socks4://, socks4a://, socks5:// or -socks5h:// to request the specific SOCKS version to be used. No protocol -specified will make curl default to SOCKS4. - -If the port number is not specified in the proxy string, it is assumed to be -1080. - -User and password that might be provided in the proxy string are URL decoded -by curl. This allows you to pass in special characters such as @ by using %40 -or pass in a colon with %3a. - -If this option is used several times, the last one will be used. diff --git a/re2-rust/docs/cmdline-opts/progress-bar.d b/re2-rust/docs/cmdline-opts/progress-bar.d deleted file mode 100644 index 96ac3009b1ddee438695c757590c2f25ab463fae..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/progress-bar.d +++ /dev/null @@ -1,17 +0,0 @@ -Short: # -Long: progress-bar -Help: Display transfer progress as a bar -Category: verbose -Example: -# -O $URL ---- -Make curl display transfer progress as a simple progress bar instead of the -standard, more informational, meter. - -This progress bar draws a single line of '#' characters across the screen and -shows a percentage if the transfer size is known. For transfers without a -known size, there will be space ship (-=o=-) that moves back and forth but -only while data is being transferred, with a set of flying hash sign symbols on -top. - -This option is global and does not need to be specified for each use of ---next. diff --git a/re2-rust/docs/cmdline-opts/proto-default.d b/re2-rust/docs/cmdline-opts/proto-default.d deleted file mode 100644 index a659b840dc5fb701d35e0d6a31fd5298ea21bf9a..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/proto-default.d +++ /dev/null @@ -1,16 +0,0 @@ -Long: proto-default -Help: Use PROTOCOL for any URL missing a scheme -Arg: -Added: 7.45.0 -Category: connection curl -Example: --proto-default https ftp.example.com ---- -Tells curl to use *protocol* for any URL missing a scheme name. - -An unknown or unsupported protocol causes error -*CURLE_UNSUPPORTED_PROTOCOL* (1). - -This option does not change the default proxy protocol (http). - -Without this option set, curl guesses protocol based on the host name, see ---url for details. diff --git a/re2-rust/docs/cmdline-opts/proto-redir.d b/re2-rust/docs/cmdline-opts/proto-redir.d deleted file mode 100644 index 81d495dd8f3c234ab88b7c75c8b405a89731443e..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/proto-redir.d +++ /dev/null @@ -1,20 +0,0 @@ -Long: proto-redir -Arg: -Help: Enable/disable PROTOCOLS on redirect -Added: 7.20.2 -Category: connection curl -Example: --proto-redir =http,https $URL ---- -Tells curl to limit what protocols it may use on redirect. Protocols denied by ---proto are not overridden by this option. See --proto for how protocols are -represented. - -Example, allow only HTTP and HTTPS on redirect: - - curl --proto-redir -all,http,https http://example.com - -By default curl will allow HTTP, HTTPS, FTP and FTPS on redirect (7.65.2). -Older versions of curl allowed all protocols on redirect except several -disabled for security reasons: Since 7.19.4 FILE and SCP are disabled, and -since 7.40.0 SMB and SMBS are also disabled. Specifying *all* or *+all* -enables all protocols on redirect, including those disabled for security. diff --git a/re2-rust/docs/cmdline-opts/proto.d b/re2-rust/docs/cmdline-opts/proto.d deleted file mode 100644 index 6ff52c41740f4446016f4b7ffa110e2573cec9d2..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/proto.d +++ /dev/null @@ -1,45 +0,0 @@ -Long: proto -Arg: -Help: Enable/disable PROTOCOLS -See-also: proto-redir proto-default -Added: 7.20.2 -Category: connection curl -Example: --proto =http,https,sftp $URL ---- -Tells curl to limit what protocols it may use for transfers. Protocols are -evaluated left to right, are comma separated, and are each a protocol name or -\&'all', optionally prefixed by zero or more modifiers. Available modifiers are: -.RS -.TP 3 -.B + -Permit this protocol in addition to protocols already permitted (this is -the default if no modifier is used). -.TP -.B - -Deny this protocol, removing it from the list of protocols already permitted. -.TP -.B = -Permit only this protocol (ignoring the list already permitted), though -subject to later modification by subsequent entries in the comma separated -list. -.RE -.IP -For example: -.RS -.TP 15 -.B --proto -ftps -uses the default protocols, but disables ftps -.TP -.B --proto -all,https,+http -only enables http and https -.TP -.B --proto =http,https -also only enables http and https -.RE -.IP -Unknown protocols produce a warning. This allows scripts to safely rely on -being able to disable potentially dangerous protocols, without relying upon -support for that protocol being built into curl to avoid an error. - -This option can be used multiple times, in which case the effect is the same -as concatenating the protocols into one instance of the option. diff --git a/re2-rust/docs/cmdline-opts/proxy-anyauth.d b/re2-rust/docs/cmdline-opts/proxy-anyauth.d deleted file mode 100644 index 80f2b970125cb49fd23521df7377209da6d38491..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/proxy-anyauth.d +++ /dev/null @@ -1,9 +0,0 @@ -Long: proxy-anyauth -Help: Pick any proxy authentication method -Added: 7.13.2 -See-also: proxy proxy-basic proxy-digest -Category: proxy auth -Example: --proxy-anyauth --proxy-user user:passwd -x proxy $URL ---- -Tells curl to pick a suitable authentication method when communicating with -the given HTTP proxy. This might cause an extra request/response round-trip. diff --git a/re2-rust/docs/cmdline-opts/proxy-basic.d b/re2-rust/docs/cmdline-opts/proxy-basic.d deleted file mode 100644 index 6d38c733a027578780fb1472922058f6e12fc5d3..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/proxy-basic.d +++ /dev/null @@ -1,9 +0,0 @@ -Long: proxy-basic -Help: Use Basic authentication on the proxy -See-also: proxy proxy-anyauth proxy-digest -Category: proxy auth -Example: --proxy-basic --proxy-user user:passwd -x proxy $URL ---- -Tells curl to use HTTP Basic authentication when communicating with the given -proxy. Use --basic for enabling HTTP Basic with a remote host. Basic is the -default authentication method curl uses with proxies. diff --git a/re2-rust/docs/cmdline-opts/proxy-cacert.d b/re2-rust/docs/cmdline-opts/proxy-cacert.d deleted file mode 100644 index 5c3294475804a54ea315888b4ff1b7c46afff06b..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/proxy-cacert.d +++ /dev/null @@ -1,9 +0,0 @@ -Long: proxy-cacert -Help: CA certificate to verify peer against for proxy -Arg: -Added: 7.52.0 -See-also: proxy-capath cacert capath proxy -Category: proxy tls -Example: --proxy-cacert CA-file.txt -x https://proxy $URL ---- -Same as --cacert but used in HTTPS proxy context. diff --git a/re2-rust/docs/cmdline-opts/proxy-capath.d b/re2-rust/docs/cmdline-opts/proxy-capath.d deleted file mode 100644 index 0429984f2a168adc1914916967309f9a78746350..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/proxy-capath.d +++ /dev/null @@ -1,9 +0,0 @@ -Long: proxy-capath -Help: CA directory to verify peer against for proxy -Arg: -Added: 7.52.0 -See-also: proxy-cacert proxy capath -Category: proxy tls -Example: --proxy-capath /local/directory -x https://proxy $URL ---- -Same as --capath but used in HTTPS proxy context. diff --git a/re2-rust/docs/cmdline-opts/proxy-cert-type.d b/re2-rust/docs/cmdline-opts/proxy-cert-type.d deleted file mode 100644 index 2152f537d63f77a0f7277b33fc044777a9206b3e..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/proxy-cert-type.d +++ /dev/null @@ -1,8 +0,0 @@ -Long: proxy-cert-type -Arg: -Added: 7.52.0 -Help: Client certificate type for HTTPS proxy -Category: proxy tls -Example: --proxy-cert-type PEM --proxy-cert file -x https://proxy $URL ---- -Same as --cert-type but used in HTTPS proxy context. diff --git a/re2-rust/docs/cmdline-opts/proxy-cert.d b/re2-rust/docs/cmdline-opts/proxy-cert.d deleted file mode 100644 index 3cf54b73f30adef8a673f7568104f6b7be89495d..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/proxy-cert.d +++ /dev/null @@ -1,8 +0,0 @@ -Long: proxy-cert -Arg: -Help: Set client certificate for proxy -Added: 7.52.0 -Category: proxy tls -Example: --proxy-cert file -x https://proxy $URL ---- -Same as --cert but used in HTTPS proxy context. diff --git a/re2-rust/docs/cmdline-opts/proxy-ciphers.d b/re2-rust/docs/cmdline-opts/proxy-ciphers.d deleted file mode 100644 index b4c358091350502edcbfe1c634ca1fea952b602b..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/proxy-ciphers.d +++ /dev/null @@ -1,8 +0,0 @@ -Long: proxy-ciphers -Arg: -Help: SSL ciphers to use for proxy -Added: 7.52.0 -Category: proxy tls -Example: --proxy-ciphers ECDHE-ECDSA-AES256-CCM8 -x https://proxy $URL ---- -Same as --ciphers but used in HTTPS proxy context. diff --git a/re2-rust/docs/cmdline-opts/proxy-crlfile.d b/re2-rust/docs/cmdline-opts/proxy-crlfile.d deleted file mode 100644 index 1ac199965f1d2b43b88bf35588a8329bd7a5a7e6..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/proxy-crlfile.d +++ /dev/null @@ -1,8 +0,0 @@ -Long: proxy-crlfile -Arg: -Help: Set a CRL list for proxy -Added: 7.52.0 -Category: proxy tls -Example: --proxy-crlfile rejects.txt -x https://proxy $URL ---- -Same as --crlfile but used in HTTPS proxy context. diff --git a/re2-rust/docs/cmdline-opts/proxy-digest.d b/re2-rust/docs/cmdline-opts/proxy-digest.d deleted file mode 100644 index cc187023683de28f5f582bcc3d44673271a6fbcd..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/proxy-digest.d +++ /dev/null @@ -1,8 +0,0 @@ -Long: proxy-digest -Help: Use Digest authentication on the proxy -See-also: proxy proxy-anyauth proxy-basic -Category: proxy tls -Example: --proxy-digest --proxy-user user:passwd -x proxy $URL ---- -Tells curl to use HTTP Digest authentication when communicating with the given -proxy. Use --digest for enabling HTTP Digest with a remote host. diff --git a/re2-rust/docs/cmdline-opts/proxy-header.d b/re2-rust/docs/cmdline-opts/proxy-header.d deleted file mode 100644 index 273a773d948eabe7285b111901b7638f5c6a8562..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/proxy-header.d +++ /dev/null @@ -1,28 +0,0 @@ -Long: proxy-header -Arg:
-Help: Pass custom header(s) to proxy -Protocols: HTTP -Added: 7.37.0 -Category: proxy -Example: --proxy-header "X-First-Name: Joe" -x http://proxy $URL -Example: --proxy-header "User-Agent: surprise" -x http://proxy $URL -Example: --proxy-header "Host:" -x http://proxy $URL ---- -Extra header to include in the request when sending HTTP to a proxy. You may -specify any number of extra headers. This is the equivalent option to --header -but is for proxy communication only like in CONNECT requests when you want a -separate header sent to the proxy to what is sent to the actual remote host. - -curl will make sure that each header you add/replace is sent with the proper -end-of-line marker, you should thus **not** add that as a part of the header -content: do not add newlines or carriage returns, they will only mess things -up for you. - -Headers specified with this option will not be included in requests that curl -knows will not be sent to a proxy. - -Starting in 7.55.0, this option can take an argument in @filename style, which -then adds a header for each line in the input file. Using @- will make curl -read the header file from stdin. - -This option can be used multiple times to add/replace/remove multiple headers. diff --git a/re2-rust/docs/cmdline-opts/proxy-insecure.d b/re2-rust/docs/cmdline-opts/proxy-insecure.d deleted file mode 100644 index 3f4f7c18051c34e0b11022b6f103819874a581c0..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/proxy-insecure.d +++ /dev/null @@ -1,7 +0,0 @@ -Long: proxy-insecure -Help: Do HTTPS proxy connections without verifying the proxy -Added: 7.52.0 -Category: proxy tls -Example: --proxy-insecure -x https://proxy $URL ---- -Same as --insecure but used in HTTPS proxy context. diff --git a/re2-rust/docs/cmdline-opts/proxy-key-type.d b/re2-rust/docs/cmdline-opts/proxy-key-type.d deleted file mode 100644 index 31f47afa4aba63151b8fb0d2821d172176749754..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/proxy-key-type.d +++ /dev/null @@ -1,8 +0,0 @@ -Long: proxy-key-type -Arg: -Help: Private key file type for proxy -Added: 7.52.0 -Category: proxy tls -Example: --proxy-key-type DER --proxy-key here -x https://proxy $URL ---- -Same as --key-type but used in HTTPS proxy context. diff --git a/re2-rust/docs/cmdline-opts/proxy-key.d b/re2-rust/docs/cmdline-opts/proxy-key.d deleted file mode 100644 index 1b9797307a95de61a7ce539a29e2d339bd7f1d79..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/proxy-key.d +++ /dev/null @@ -1,7 +0,0 @@ -Long: proxy-key -Help: Private key for HTTPS proxy -Arg: -Category: proxy tls -Example: --proxy-key here -x https://proxy $URL ---- -Same as --key but used in HTTPS proxy context. diff --git a/re2-rust/docs/cmdline-opts/proxy-negotiate.d b/re2-rust/docs/cmdline-opts/proxy-negotiate.d deleted file mode 100644 index 5085a7cb3aa023ad202a3ce26ba4b056f62ddb36..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/proxy-negotiate.d +++ /dev/null @@ -1,10 +0,0 @@ -Long: proxy-negotiate -Help: Use HTTP Negotiate (SPNEGO) authentication on the proxy -Added: 7.17.1 -See-also: proxy-anyauth proxy-basic -Category: proxy auth -Example: --proxy-negotiate --proxy-user user:passwd -x proxy $URL ---- -Tells curl to use HTTP Negotiate (SPNEGO) authentication when communicating -with the given proxy. Use --negotiate for enabling HTTP Negotiate (SPNEGO) -with a remote host. diff --git a/re2-rust/docs/cmdline-opts/proxy-ntlm.d b/re2-rust/docs/cmdline-opts/proxy-ntlm.d deleted file mode 100644 index 074b7df85569305af8be633fdd9c84b6e32f7f13..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/proxy-ntlm.d +++ /dev/null @@ -1,8 +0,0 @@ -Long: proxy-ntlm -Help: Use NTLM authentication on the proxy -See-also: proxy-negotiate proxy-anyauth -Category: proxy auth -Example: --proxy-ntlm --proxy-user user:passwd -x http://proxy $URL ---- -Tells curl to use HTTP NTLM authentication when communicating with the given -proxy. Use --ntlm for enabling NTLM with a remote host. diff --git a/re2-rust/docs/cmdline-opts/proxy-pass.d b/re2-rust/docs/cmdline-opts/proxy-pass.d deleted file mode 100644 index b71468413a8a42714fa3451d352a5c40c4e427a3..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/proxy-pass.d +++ /dev/null @@ -1,8 +0,0 @@ -Long: proxy-pass -Arg: -Help: Pass phrase for the private key for HTTPS proxy -Added: 7.52.0 -Category: proxy tls auth -Example: --proxy-pass secret --proxy-key here -x https://proxy $URL ---- -Same as --pass but used in HTTPS proxy context. diff --git a/re2-rust/docs/cmdline-opts/proxy-pinnedpubkey.d b/re2-rust/docs/cmdline-opts/proxy-pinnedpubkey.d deleted file mode 100644 index b7f50a769fdcff6fcc0d106d7d8f1184d2a490f8..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/proxy-pinnedpubkey.d +++ /dev/null @@ -1,19 +0,0 @@ -Long: proxy-pinnedpubkey -Arg: -Help: FILE/HASHES public key to verify proxy with -Protocols: TLS -Category: proxy tls -Example: --proxy-pinnedpubkey keyfile $URL -Example: --proxy-pinnedpubkey 'sha256//ce118b51897f4452dc' $URL ---- -Tells curl to use the specified public key file (or hashes) to verify the -proxy. This can be a path to a file which contains a single public key in PEM -or DER format, or any number of base64 encoded sha256 hashes preceded by -\'sha256//\' and separated by \';\' - -When negotiating a TLS or SSL connection, the server sends a certificate -indicating its identity. A public key is extracted from this certificate and -if it does not exactly match the public key provided to this option, curl will -abort the connection before sending or receiving any data. - -If this option is used several times, the last one will be used. diff --git a/re2-rust/docs/cmdline-opts/proxy-service-name.d b/re2-rust/docs/cmdline-opts/proxy-service-name.d deleted file mode 100644 index fbed175700ac5e13c9b1303696a5a0576a479395..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/proxy-service-name.d +++ /dev/null @@ -1,8 +0,0 @@ -Long: proxy-service-name -Arg: -Help: SPNEGO proxy service name -Added: 7.43.0 -Category: proxy tls -Example: --proxy-service-name "shrubbery" -x proxy $URL ---- -This option allows you to change the service name for proxy negotiation. diff --git a/re2-rust/docs/cmdline-opts/proxy-ssl-allow-beast.d b/re2-rust/docs/cmdline-opts/proxy-ssl-allow-beast.d deleted file mode 100644 index b3e701f05a386648ecc86caba982a6eff4744fb9..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/proxy-ssl-allow-beast.d +++ /dev/null @@ -1,7 +0,0 @@ -Long: proxy-ssl-allow-beast -Help: Allow security flaw for interop for HTTPS proxy -Added: 7.52.0 -Category: proxy tls -Example: --proxy-ssl-allow-beast -x https://proxy $URL ---- -Same as --ssl-allow-beast but used in HTTPS proxy context. diff --git a/re2-rust/docs/cmdline-opts/proxy-ssl-auto-client-cert.d b/re2-rust/docs/cmdline-opts/proxy-ssl-auto-client-cert.d deleted file mode 100644 index 7c071d7eca0f2e226a92fc07237234a404178f4d..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/proxy-ssl-auto-client-cert.d +++ /dev/null @@ -1,7 +0,0 @@ -Long: proxy-ssl-auto-client-cert -Help: Use auto client certificate for proxy (Schannel) -Added: 7.77.0 -Category: proxy tls -Example: --proxy-ssl-auto-client-cert -x https://proxy $URL ---- -Same as --ssl-auto-client-cert but used in HTTPS proxy context. diff --git a/re2-rust/docs/cmdline-opts/proxy-tls13-ciphers.d b/re2-rust/docs/cmdline-opts/proxy-tls13-ciphers.d deleted file mode 100644 index 62578f7f4eb98329852f6bb60391ea9218b866e6..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/proxy-tls13-ciphers.d +++ /dev/null @@ -1,18 +0,0 @@ -Long: proxy-tls13-ciphers -Arg: -help: TLS 1.3 proxy cipher suites -Protocols: TLS -Category: proxy tls -Example: --proxy-tls13-ciphers TLS_AES_128_GCM_SHA256 -x proxy $URL ---- -Specifies which cipher suites to use in the connection to your HTTPS proxy -when it negotiates TLS 1.3. The list of ciphers suites must specify valid -ciphers. Read up on TLS 1.3 cipher suite details on this URL: - - https://curl.se/docs/ssl-ciphers.html - -This option is currently used only when curl is built to use OpenSSL 1.1.1 or -later. If you are using a different SSL backend you can try setting TLS 1.3 -cipher suites by using the --proxy-ciphers option. - -If this option is used several times, the last one will be used. diff --git a/re2-rust/docs/cmdline-opts/proxy-tlsauthtype.d b/re2-rust/docs/cmdline-opts/proxy-tlsauthtype.d deleted file mode 100644 index c00928ed56454d2d8b7c97c68d090875c65382ae..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/proxy-tlsauthtype.d +++ /dev/null @@ -1,8 +0,0 @@ -Long: proxy-tlsauthtype -Arg: -Help: TLS authentication type for HTTPS proxy -Added: 7.52.0 -Category: proxy tls auth -Example: --proxy-tlsauthtype SRP -x https://proxy $URL ---- -Same as --tlsauthtype but used in HTTPS proxy context. diff --git a/re2-rust/docs/cmdline-opts/proxy-tlspassword.d b/re2-rust/docs/cmdline-opts/proxy-tlspassword.d deleted file mode 100644 index 89b551d68affcaaaf69cb3d182f2c331e88cf3c3..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/proxy-tlspassword.d +++ /dev/null @@ -1,8 +0,0 @@ -Long: proxy-tlspassword -Arg: -Help: TLS password for HTTPS proxy -Added: 7.52.0 -Category: proxy tls auth -Example: --proxy-tlspassword passwd -x https://proxy $URL ---- -Same as --tlspassword but used in HTTPS proxy context. diff --git a/re2-rust/docs/cmdline-opts/proxy-tlsuser.d b/re2-rust/docs/cmdline-opts/proxy-tlsuser.d deleted file mode 100644 index b3c400ed5d5398cacb6fd11c520f41f227808e5a..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/proxy-tlsuser.d +++ /dev/null @@ -1,8 +0,0 @@ -Long: proxy-tlsuser -Arg: -Help: TLS username for HTTPS proxy -Added: 7.52.0 -Category: proxy tls auth -Example: --proxy-tlsuser smith -x https://proxy $URL ---- -Same as --tlsuser but used in HTTPS proxy context. diff --git a/re2-rust/docs/cmdline-opts/proxy-tlsv1.d b/re2-rust/docs/cmdline-opts/proxy-tlsv1.d deleted file mode 100644 index c54782e8f8a6268b1492d7f6db65ca834597b5bc..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/proxy-tlsv1.d +++ /dev/null @@ -1,7 +0,0 @@ -Long: proxy-tlsv1 -Help: Use TLSv1 for HTTPS proxy -Added: 7.52.0 -Category: proxy tls auth -Example: --proxy-tlsv1 -x https://proxy $URL ---- -Same as --tlsv1 but used in HTTPS proxy context. diff --git a/re2-rust/docs/cmdline-opts/proxy-user.d b/re2-rust/docs/cmdline-opts/proxy-user.d deleted file mode 100644 index 81d29f2ab0efaefb5a0b53eb75416f1be5e4d641..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/proxy-user.d +++ /dev/null @@ -1,20 +0,0 @@ -Long: proxy-user -Short: U -Arg: -Help: Proxy user and password -Category: proxy auth -Example: --proxy-user name:pwd -x proxy $URL ---- -Specify the user name and password to use for proxy authentication. - -If you use a Windows SSPI-enabled curl binary and do either Negotiate or NTLM -authentication then you can tell curl to select the user name and password -from your environment by specifying a single colon with this option: "-U :". - -On systems where it works, curl will hide the given option argument from -process listings. This is not enough to protect credentials from possibly -getting seen by other users on the same system as they will still be visible -for a brief moment before cleared. Such sensitive data should be retrieved -from a file instead or similar and never used in clear text in a command line. - -If this option is used several times, the last one will be used. diff --git a/re2-rust/docs/cmdline-opts/proxy.d b/re2-rust/docs/cmdline-opts/proxy.d deleted file mode 100644 index 81d9bc9521cac42f7fd3f47f94ac66944d58304b..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/proxy.d +++ /dev/null @@ -1,41 +0,0 @@ -Long: proxy -Short: x -Arg: [protocol://]host[:port] -Help: Use this proxy -Category: proxy -Example: --proxy http://proxy.example $URL ---- -Use the specified proxy. - -The proxy string can be specified with a protocol:// prefix. No protocol -specified or http:// will be treated as HTTP proxy. Use socks4://, socks4a://, -socks5:// or socks5h:// to request a specific SOCKS version to be used. -(The protocol support was added in curl 7.21.7) - -HTTPS proxy support via https:// protocol prefix was added in 7.52.0 for -OpenSSL, GnuTLS and NSS. - -Unrecognized and unsupported proxy protocols cause an error since 7.52.0. -Prior versions may ignore the protocol and use http:// instead. - -If the port number is not specified in the proxy string, it is assumed to be -1080. - -This option overrides existing environment variables that set the proxy to -use. If there's an environment variable setting a proxy, you can set proxy to -\&"" to override it. - -All operations that are performed over an HTTP proxy will transparently be -converted to HTTP. It means that certain protocol specific operations might -not be available. This is not the case if you can tunnel through the proxy, as -one with the --proxytunnel option. - -User and password that might be provided in the proxy string are URL decoded -by curl. This allows you to pass in special characters such as @ by using %40 -or pass in a colon with %3a. - -The proxy host can be specified the exact same way as the proxy environment -variables, including the protocol prefix (http://) and the embedded user + -password. - -If this option is used several times, the last one will be used. diff --git a/re2-rust/docs/cmdline-opts/proxy1.0.d b/re2-rust/docs/cmdline-opts/proxy1.0.d deleted file mode 100644 index f74834567524243c4b9f6f7ac3618ce071880302..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/proxy1.0.d +++ /dev/null @@ -1,12 +0,0 @@ -Long: proxy1.0 -Arg: -Help: Use HTTP/1.0 proxy on given port -Category: proxy -Example: --proxy1.0 -x http://proxy $URL ---- -Use the specified HTTP 1.0 proxy. If the port number is not specified, it is -assumed at port 1080. - -The only difference between this and the HTTP proxy option --proxy, is that -attempts to use CONNECT through the proxy will specify an HTTP 1.0 protocol -instead of the default HTTP 1.1. diff --git a/re2-rust/docs/cmdline-opts/proxytunnel.d b/re2-rust/docs/cmdline-opts/proxytunnel.d deleted file mode 100644 index 712c755a87e58a2b480be1fbfb22958f6b92b4e5..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/proxytunnel.d +++ /dev/null @@ -1,14 +0,0 @@ -Long: proxytunnel -Short: p -Help: Operate through an HTTP proxy tunnel (using CONNECT) -See-also: proxy -Category: proxy -Example: --proxytunnel -x http://proxy $URL ---- -When an HTTP proxy is used --proxy, this option will make curl tunnel through -the proxy. The tunnel approach is made with the HTTP proxy CONNECT request and -requires that the proxy allows direct connect to the remote port number curl -wants to tunnel through to. - -To suppress proxy CONNECT response headers when curl is set to output headers -use --suppress-connect-headers. diff --git a/re2-rust/docs/cmdline-opts/pubkey.d b/re2-rust/docs/cmdline-opts/pubkey.d deleted file mode 100644 index c1fb5d8ef30e5451920d7374c13dbc318217a2e6..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/pubkey.d +++ /dev/null @@ -1,16 +0,0 @@ -Long: pubkey -Arg: -Protocols: SFTP SCP -Help: SSH Public key file name -Category: sftp scp auth -Example: --pubkey file.pub sftp://example.com/ ---- -Public key file name. Allows you to provide your public key in this separate -file. - -If this option is used several times, the last one will be used. - -(As of 7.39.0, curl attempts to automatically extract the public key from the -private key file, so passing this option is generally not required. Note that -this public key extraction requires libcurl to be linked against a copy of -libssh2 1.2.8 or higher that is itself linked against OpenSSL.) diff --git a/re2-rust/docs/cmdline-opts/quote.d b/re2-rust/docs/cmdline-opts/quote.d deleted file mode 100644 index 2707c87dd7f87d944cc22b09066f61ecac6c49e4..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/quote.d +++ /dev/null @@ -1,68 +0,0 @@ -Long: quote -Arg: -Short: Q -Help: Send command(s) to server before transfer -Protocols: FTP SFTP -Category: ftp sftp -Example: --quote "DELE file" ftp://example.com/foo ---- -Send an arbitrary command to the remote FTP or SFTP server. Quote commands are -sent BEFORE the transfer takes place (just after the initial PWD command in an -FTP transfer, to be exact). To make commands take place after a successful -transfer, prefix them with a dash '-'. To make commands be sent after curl -has changed the working directory, just before the transfer command(s), prefix -the command with a '+' (this is only supported for FTP). You may specify any -number of commands. - -By default curl will stop at first failure. To make curl continue even if the -command fails, prefix the command with an asterisk (*). Otherwise, if the -server returns failure for one of the commands, the entire operation will be -aborted. - -You must send syntactically correct FTP commands as RFC 959 defines to FTP -servers, or one of the commands listed below to SFTP servers. - -This option can be used multiple times. - -SFTP is a binary protocol. Unlike for FTP, curl interprets SFTP quote commands -itself before sending them to the server. File names may be quoted -shell-style to embed spaces or special characters. Following is the list of -all supported SFTP quote commands: -.RS -.IP "atime date file" -The atime command sets the last access time of the file named by the file -operand. The can be all sorts of date strings, see the -*curl_getdate(3)* man page for date expression details. (Added in 7.73.0) -.IP "chgrp group file" -The chgrp command sets the group ID of the file named by the file operand to -the group ID specified by the group operand. The group operand is a decimal -integer group ID. -.IP "chmod mode file" -The chmod command modifies the file mode bits of the specified file. The -mode operand is an octal integer mode number. -.IP "chown user file" -The chown command sets the owner of the file named by the file operand to the -user ID specified by the user operand. The user operand is a decimal -integer user ID. -.IP "ln source_file target_file" -The ln and symlink commands create a symbolic link at the target_file location -pointing to the source_file location. -.IP "mkdir directory_name" -The mkdir command creates the directory named by the directory_name operand. -.IP "mtime date file" -The mtime command sets the last modification time of the file named by the -file operand. The can be all sorts of date strings, see the -*curl_getdate(3)* man page for date expression details. (Added in 7.73.0) -.IP "pwd" -The pwd command returns the absolute pathname of the current working directory. -.IP "rename source target" -The rename command renames the file or directory named by the source -operand to the destination path named by the target operand. -.IP "rm file" -The rm command removes the file specified by the file operand. -.IP "rmdir directory" -The rmdir command removes the directory entry specified by the directory -operand, provided it is empty. -.IP "symlink source_file target_file" -See ln. -.RE diff --git a/re2-rust/docs/cmdline-opts/random-file.d b/re2-rust/docs/cmdline-opts/random-file.d deleted file mode 100644 index a207c1e1ba773b625fd39c4f19b2d45b02959955..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/random-file.d +++ /dev/null @@ -1,9 +0,0 @@ -Long: random-file -Arg: -Help: File for reading random data from -Category: misc -Example: --random-file rubbish $URL ---- -Specify the path name to file containing what will be considered as random -data. The data may be used to seed the random engine for SSL connections. See -also the --egd-file option. diff --git a/re2-rust/docs/cmdline-opts/range.d b/re2-rust/docs/cmdline-opts/range.d deleted file mode 100644 index 0637f8fc2be43d4ee725188e009c433792311a57..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/range.d +++ /dev/null @@ -1,49 +0,0 @@ -Long: range -Short: r -Help: Retrieve only the bytes within RANGE -Arg: -Protocols: HTTP FTP SFTP FILE -Category: http ftp sftp file -Example: --range 22-44 $URL ---- -Retrieve a byte range (i.e. a partial document) from an HTTP/1.1, FTP or SFTP -server or a local FILE. Ranges can be specified in a number of ways. -.RS -.TP 10 -.B 0-499 -specifies the first 500 bytes -.TP -.B 500-999 -specifies the second 500 bytes -.TP -.B -500 -specifies the last 500 bytes -.TP -.B 9500- -specifies the bytes from offset 9500 and forward -.TP -.B 0-0,-1 -specifies the first and last byte only(*)(HTTP) -.TP -.B 100-199,500-599 -specifies two separate 100-byte ranges(*) (HTTP) -.RE -.IP -(*) = NOTE that this will cause the server to reply with a multipart -response, which will be returned as-is by curl! Parsing or otherwise -transforming this response is the responsibility of the caller. - -Only digit characters (0-9) are valid in the 'start' and 'stop' fields of the -\&'start-stop' range syntax. If a non-digit character is given in the range, -the server's response will be unspecified, depending on the server's -configuration. - -You should also be aware that many HTTP/1.1 servers do not have this feature -enabled, so that when you attempt to get a range, you'll instead get the whole -document. - -FTP and SFTP range downloads only support the simple 'start-stop' syntax -(optionally with one of the numbers omitted). FTP use depends on the extended -FTP command SIZE. - -If this option is used several times, the last one will be used. diff --git a/re2-rust/docs/cmdline-opts/raw.d b/re2-rust/docs/cmdline-opts/raw.d deleted file mode 100644 index c44d33f5cc5f970b7f79a3d9005314180b06d4b2..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/raw.d +++ /dev/null @@ -1,9 +0,0 @@ -Long: raw -Help: Do HTTP "raw"; no transfer decoding -Added: 7.16.2 -Protocols: HTTP -Category: http -Example: --raw $URL ---- -When used, it disables all internal HTTP decoding of content or transfer -encodings and instead makes them passed on unaltered, raw. diff --git a/re2-rust/docs/cmdline-opts/referer.d b/re2-rust/docs/cmdline-opts/referer.d deleted file mode 100644 index 3f6b7c7e12a535f588fe402e3f32c491edd54dc5..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/referer.d +++ /dev/null @@ -1,18 +0,0 @@ -Long: referer -Short: e -Arg: -Protocols: HTTP -Help: Referrer URL -See-also: user-agent header -Category: http -Example: --referer "https://fake.example" $URL -Example: --referer "https://fake.example;auto" -L $URL -Example: --referer ";auto" -L $URL ---- -Sends the "Referrer Page" information to the HTTP server. This can also be set -with the --header flag of course. When used with --location you can append -";auto" to the --referer URL to make curl automatically set the previous URL -when it follows a Location: header. The \&";auto" string can be used alone, -even if you don't set an initial --referer. - -If this option is used several times, the last one will be used. diff --git a/re2-rust/docs/cmdline-opts/remote-header-name.d b/re2-rust/docs/cmdline-opts/remote-header-name.d deleted file mode 100644 index 6e0b98bd1fc94c0197d3a255d98cc3efffc3ad38..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/remote-header-name.d +++ /dev/null @@ -1,21 +0,0 @@ -Long: remote-header-name -Short: J -Protocols: HTTP -Help: Use the header-provided filename -Category: output -Example: -OJ https://example.com/file ---- -This option tells the --remote-name option to use the server-specified -Content-Disposition filename instead of extracting a filename from the URL. - -If the server specifies a file name and a file with that name already exists -in the current working directory it will not be overwritten and an error will -occur. If the server doesn't specify a file name then this option has no -effect. - -There's no attempt to decode %-sequences (yet) in the provided file name, so -this option may provide you with rather unexpected file names. - -**WARNING**: Exercise judicious use of this option, especially on Windows. A -rogue server could send you the name of a DLL or other file that could possibly -be loaded automatically by Windows or some third party software. diff --git a/re2-rust/docs/cmdline-opts/remote-name-all.d b/re2-rust/docs/cmdline-opts/remote-name-all.d deleted file mode 100644 index e27bd5f48d76123061dd33e5bf78d6ea0d0f7da3..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/remote-name-all.d +++ /dev/null @@ -1,10 +0,0 @@ -Long: remote-name-all -Help: Use the remote file name for all URLs -Added: 7.19.0 -Category: output -Example: --remote-name-all ftp://example.com/file1 ftp://example.com/file2 ---- -This option changes the default action for all given URLs to be dealt with as -if --remote-name were used for each one. So if you want to disable that for a -specific URL after --remote-name-all has been used, you must use "-o -" or ---no-remote-name. diff --git a/re2-rust/docs/cmdline-opts/remote-name.d b/re2-rust/docs/cmdline-opts/remote-name.d deleted file mode 100644 index 68928794b57e18c6a0a33fd7156c3be7842b1466..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/remote-name.d +++ /dev/null @@ -1,23 +0,0 @@ -Long: remote-name -Short: O -Help: Write output to a file named as the remote file -Category: important output -Example: -O https://example.com/filename ---- -Write output to a local file named like the remote file we get. (Only the file -part of the remote file is used, the path is cut off.) - -The file will be saved in the current working directory. If you want the file -saved in a different directory, make sure you change the current working -directory before invoking curl with this option. - -The remote file name to use for saving is extracted from the given URL, -nothing else, and if it already exists it will be overwritten. If you want the -server to be able to choose the file name refer to --remote-header-name which -can be used in addition to this option. If the server chooses a file name and -that name already exists it will not be overwritten. - -There is no URL decoding done on the file name. If it has %20 or other URL -encoded parts of the name, they will end up as-is as file name. - -You may use this option as many times as the number of URLs you have. diff --git a/re2-rust/docs/cmdline-opts/remote-time.d b/re2-rust/docs/cmdline-opts/remote-time.d deleted file mode 100644 index 9c463ae81986da238ca899b384462d9eaf5508d5..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/remote-time.d +++ /dev/null @@ -1,9 +0,0 @@ -Long: remote-time -Short: R -Help: Set the remote file's time on the local output -Category: output -Example: --remote-time -o foo $URL ---- -When used, this will make curl attempt to figure out the timestamp of the -remote file, and if that is available make the local file get that same -timestamp. diff --git a/re2-rust/docs/cmdline-opts/request-target.d b/re2-rust/docs/cmdline-opts/request-target.d deleted file mode 100644 index 5f9e475514d79fd59e58f2cd7534d8419321028f..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/request-target.d +++ /dev/null @@ -1,12 +0,0 @@ -Long: request-target -Arg: -Help: Specify the target for this request -Protocols: HTTP -Added: 7.55.0 -Category: http -Example: --request-target "*" -X OPTIONS $URL ---- -Tells curl to use an alternative "target" (path) instead of using the path as -provided in the URL. Particularly useful when wanting to issue HTTP requests -without leading slash or other data that doesn't follow the regular URL -pattern, like "OPTIONS *". diff --git a/re2-rust/docs/cmdline-opts/request.d b/re2-rust/docs/cmdline-opts/request.d deleted file mode 100644 index 0db0bc9f7700a012c1339d560fb698f8c8752af9..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/request.d +++ /dev/null @@ -1,42 +0,0 @@ -Long: request -Short: X -Arg: -Help: Specify request command to use -Category: connection -Example: -X "DELETE" $URL -Example: -X NLST ftp://example.com/ ---- -(HTTP) Specifies a custom request method to use when communicating with the -HTTP server. The specified request method will be used instead of the method -otherwise used (which defaults to GET). Read the HTTP 1.1 specification for -details and explanations. Common additional HTTP requests include PUT and -DELETE, but related technologies like WebDAV offers PROPFIND, COPY, MOVE and -more. - -Normally you don't need this option. All sorts of GET, HEAD, POST and PUT -requests are rather invoked by using dedicated command line options. - -This option only changes the actual word used in the HTTP request, it does not -alter the way curl behaves. So for example if you want to make a proper HEAD -request, using -X HEAD will not suffice. You need to use the --head option. - -The method string you set with --request will be used for all requests, which -if you for example use --location may cause unintended side-effects when curl -doesn't change request method according to the HTTP 30x response codes - and -similar. - -(FTP) -Specifies a custom FTP command to use instead of LIST when doing file lists -with FTP. - -(POP3) -Specifies a custom POP3 command to use instead of LIST or RETR. (Added in -7.26.0) - -(IMAP) -Specifies a custom IMAP command to use instead of LIST. (Added in 7.30.0) - -(SMTP) -Specifies a custom SMTP command to use instead of HELP or VRFY. (Added in 7.34.0) - -If this option is used several times, the last one will be used. diff --git a/re2-rust/docs/cmdline-opts/resolve.d b/re2-rust/docs/cmdline-opts/resolve.d deleted file mode 100644 index 6464c42fb511acca6884de8f18ecd876cd02724d..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/resolve.d +++ /dev/null @@ -1,37 +0,0 @@ -Long: resolve -Arg: <[+]host:port:addr[,addr]...> -Help: Resolve the host+port to this address -Added: 7.21.3 -Category: connection -Example: --resolve example.com:443:127.0.0.1 $URL ---- -Provide a custom address for a specific host and port pair. Using this, you -can make the curl requests(s) use a specified address and prevent the -otherwise normally resolved address to be used. Consider it a sort of -/etc/hosts alternative provided on the command line. The port number should be -the number used for the specific protocol the host will be used for. It means -you need several entries if you want to provide address for the same host but -different ports. - -By specifying '*' as host you can tell curl to resolve any host and specific -port pair to the specified address. Wildcard is resolved last so any --resolve -with a specific host and port will be used first. - -The provided address set by this option will be used even if --ipv4 or --ipv6 -is set to make curl use another IP version. - -By prefixing the host with a '+' you can make the entry time out after curl's -default timeout (1 minute). Note that this will only make sense for long -running parallel transfers with a lot of files. In such cases, if this option -is used curl will try to resolve the host as it normally would once the -timeout has expired. - -Support for providing the IP address within [brackets] was added in 7.57.0. - -Support for providing multiple IP addresses per entry was added in 7.59.0. - -Support for resolving with wildcard was added in 7.64.0. - -Support for the '+' prefix was was added in 7.75.0. - -This option can be used many times to add many host names to resolve. diff --git a/re2-rust/docs/cmdline-opts/retry-all-errors.d b/re2-rust/docs/cmdline-opts/retry-all-errors.d deleted file mode 100644 index 5cab5ddaafa1e3b857362324e2a8058ca9ce2e39..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/retry-all-errors.d +++ /dev/null @@ -1,30 +0,0 @@ -Long: retry-all-errors -Help: Retry all errors (use with --retry) -Added: 7.71.0 -Category: curl -Example: --retry-all-errors $URL ---- -Retry on any error. This option is used together with --retry. - -This option is the "sledgehammer" of retrying. Do not use this option by -default (eg in curlrc), there may be unintended consequences such as sending or -receiving duplicate data. Do not use with redirected input or output. You'd be -much better off handling your unique problems in shell script. Please read the -example below. - -**WARNING**: For server compatibility curl attempts to retry failed flaky -transfers as close as possible to how they were started, but this is not -possible with redirected input or output. For example, before retrying it -removes output data from a failed partial transfer that was written to an -output file. However this is not true of data redirected to a | pipe or > -file, which are not reset. We strongly suggest don't parse or record output -via redirect in combination with this option, since you may receive duplicate -data. - -By default curl will not error on an HTTP response code that indicates an HTTP -error, if the transfer was successful. For example, if a server replies 404 -Not Found and the reply is fully received then that is not an error. When ---retry is used then curl will retry on some HTTP response codes that indicate -transient HTTP errors, but that does not include most 4xx response codes such -as 404. If you want to retry on all response codes that indicate HTTP errors -(4xx and 5xx) then combine with --fail. diff --git a/re2-rust/docs/cmdline-opts/retry-connrefused.d b/re2-rust/docs/cmdline-opts/retry-connrefused.d deleted file mode 100644 index ad079e09626614b92a934b98570d9976a2b65682..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/retry-connrefused.d +++ /dev/null @@ -1,8 +0,0 @@ -Long: retry-connrefused -Help: Retry on connection refused (use with --retry) -Added: 7.52.0 -Category: curl -Example: --retry-connrefused --retry $URL ---- -In addition to the other conditions, consider ECONNREFUSED as a transient -error too for --retry. This option is used together with --retry. diff --git a/re2-rust/docs/cmdline-opts/retry-delay.d b/re2-rust/docs/cmdline-opts/retry-delay.d deleted file mode 100644 index 28391290444676f12f491508db55e747bc3bdf61..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/retry-delay.d +++ /dev/null @@ -1,13 +0,0 @@ -Long: retry-delay -Arg: -Help: Wait time between retries -Added: 7.12.3 -Category: curl -Example: --retry-delay 5 --retry $URL ---- -Make curl sleep this amount of time before each retry when a transfer has -failed with a transient error (it changes the default backoff time algorithm -between retries). This option is only interesting if --retry is also -used. Setting this delay to zero will make curl use the default backoff time. - -If this option is used several times, the last one will be used. diff --git a/re2-rust/docs/cmdline-opts/retry-max-time.d b/re2-rust/docs/cmdline-opts/retry-max-time.d deleted file mode 100644 index acccff5d415035599e5096476930c3eb92e371ff..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/retry-max-time.d +++ /dev/null @@ -1,15 +0,0 @@ -Long: retry-max-time -Arg: -Help: Retry only within this period -Added: 7.12.3 -Category: curl -Example: --retry-max-time 30 --retry 10 $URL ---- -The retry timer is reset before the first transfer attempt. Retries will be -done as usual (see --retry) as long as the timer hasn't reached this given -limit. Notice that if the timer hasn't reached the limit, the request will be -made and while performing, it may take longer than this given time period. To -limit a single request\'s maximum time, use --max-time. Set this option to -zero to not timeout retries. - -If this option is used several times, the last one will be used. diff --git a/re2-rust/docs/cmdline-opts/retry.d b/re2-rust/docs/cmdline-opts/retry.d deleted file mode 100644 index 6238383fe36fb595b5fd57fbd32f593175e7feae..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/retry.d +++ /dev/null @@ -1,23 +0,0 @@ -Long: retry -Arg: -Added: 7.12.3 -Help: Retry request if transient problems occur -Category: curl -Example: --retry 7 $URL ---- -If a transient error is returned when curl tries to perform a transfer, it -will retry this number of times before giving up. Setting the number to 0 -makes curl do no retries (which is the default). Transient error means either: -a timeout, an FTP 4xx response code or an HTTP 408, 429, 500, 502, 503 or 504 -response code. - -When curl is about to retry a transfer, it will first wait one second and then -for all forthcoming retries it will double the waiting time until it reaches -10 minutes which then will be the delay between the rest of the retries. By -using --retry-delay you disable this exponential backoff algorithm. See also ---retry-max-time to limit the total time allowed for retries. - -Since curl 7.66.0, curl will comply with the Retry-After: response header if -one was present to know when to issue the next retry. - -If this option is used several times, the last one will be used. diff --git a/re2-rust/docs/cmdline-opts/sasl-authzid.d b/re2-rust/docs/cmdline-opts/sasl-authzid.d deleted file mode 100644 index 9065bd5ecb22ccc1aface64fa6b0b16fb4d24420..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/sasl-authzid.d +++ /dev/null @@ -1,14 +0,0 @@ -Long: sasl-authzid -Arg: -Help: Identity for SASL PLAIN authentication -Added: 7.66.0 -Category: auth -Example: --sasl-authzid zid imap://example.com/ ---- -Use this authorisation identity (authzid), during SASL PLAIN authentication, -in addition to the authentication identity (authcid) as specified by --user. - -If the option isn't specified, the server will derive the authzid from the -authcid, but if specified, and depending on the server implementation, it may -be used to access another user's inbox, that the user has been granted access -to, or a shared mailbox for example. diff --git a/re2-rust/docs/cmdline-opts/sasl-ir.d b/re2-rust/docs/cmdline-opts/sasl-ir.d deleted file mode 100644 index 5004306a4addde20178e22189890e4e54559e18d..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/sasl-ir.d +++ /dev/null @@ -1,7 +0,0 @@ -Long: sasl-ir -Help: Enable initial response in SASL authentication -Added: 7.31.0 -Category: auth -Example: --sasl-ir imap://example.com/ ---- -Enable initial response in SASL authentication. diff --git a/re2-rust/docs/cmdline-opts/service-name.d b/re2-rust/docs/cmdline-opts/service-name.d deleted file mode 100644 index 3a5559bc865786c910dacec9234b1dc40c1ccf40..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/service-name.d +++ /dev/null @@ -1,10 +0,0 @@ -Long: service-name -Help: SPNEGO service name -Arg: -Added: 7.43.0 -Category: misc -Example: --service-name sockd/server $URL ---- -This option allows you to change the service name for SPNEGO. - -Examples: --negotiate --service-name sockd would use sockd/server-name. diff --git a/re2-rust/docs/cmdline-opts/show-error.d b/re2-rust/docs/cmdline-opts/show-error.d deleted file mode 100644 index e8b2177129e7c3d1e344bcfad61a61a27685d720..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/show-error.d +++ /dev/null @@ -1,11 +0,0 @@ -Long: show-error -Short: S -Help: Show error even when -s is used -See-also: no-progress-meter -Category: curl -Example: --show-error --silent $URL ---- -When used with --silent, it makes curl show an error message if it fails. - -This option is global and does not need to be specified for each use of ---next. diff --git a/re2-rust/docs/cmdline-opts/silent.d b/re2-rust/docs/cmdline-opts/silent.d deleted file mode 100644 index 7122c542eb2bf0237e80f5cea5c835a64df4e0ff..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/silent.d +++ /dev/null @@ -1,13 +0,0 @@ -Long: silent -Short: s -Help: Silent mode -See-also: verbose stderr no-progress-meter -Category: important verbose -Example: -s $URL ---- -Silent or quiet mode. Don't show progress meter or error messages. Makes Curl -mute. It will still output the data you ask for, potentially even to the -terminal/stdout unless you redirect it. - -Use --show-error in addition to this option to disable progress meter but -still show error messages. diff --git a/re2-rust/docs/cmdline-opts/socks4.d b/re2-rust/docs/cmdline-opts/socks4.d deleted file mode 100644 index 1cae1e1fcec0379753abeae08b6dbb00be84ba06..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/socks4.d +++ /dev/null @@ -1,22 +0,0 @@ -Long: socks4 -Arg: -Help: SOCKS4 proxy on given host + port -Added: 7.15.2 -Category: proxy -Example: --socks4 hostname:4096 $URL ---- -Use the specified SOCKS4 proxy. If the port number is not specified, it is -assumed at port 1080. Using this socket type make curl resolve the host name -and passing the address on to the proxy. - -This option overrides any previous use of --proxy, as they are mutually -exclusive. - -Since 7.21.7, this option is superfluous since you can specify a socks4 proxy -with --proxy using a socks4:// protocol prefix. - -Since 7.52.0, --preproxy can be used to specify a SOCKS proxy at the same time ---proxy is used with an HTTP/HTTPS proxy. In such a case curl first connects to -the SOCKS proxy and then connects (through SOCKS) to the HTTP or HTTPS proxy. - -If this option is used several times, the last one will be used. diff --git a/re2-rust/docs/cmdline-opts/socks4a.d b/re2-rust/docs/cmdline-opts/socks4a.d deleted file mode 100644 index 8edefdd1b626aa59fa58367168d6fe68a6e66839..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/socks4a.d +++ /dev/null @@ -1,21 +0,0 @@ -Long: socks4a -Arg: -Help: SOCKS4a proxy on given host + port -Added: 7.18.0 -Category: proxy -Example: --socks4a hostname:4096 $URL ---- -Use the specified SOCKS4a proxy. If the port number is not specified, it is -assumed at port 1080. This asks the proxy to resolve the host name. - -This option overrides any previous use of --proxy, as they are mutually -exclusive. - -Since 7.21.7, this option is superfluous since you can specify a socks4a proxy -with --proxy using a socks4a:// protocol prefix. - -Since 7.52.0, --preproxy can be used to specify a SOCKS proxy at the same time ---proxy is used with an HTTP/HTTPS proxy. In such a case curl first connects to -the SOCKS proxy and then connects (through SOCKS) to the HTTP or HTTPS proxy. - -If this option is used several times, the last one will be used. diff --git a/re2-rust/docs/cmdline-opts/socks5-basic.d b/re2-rust/docs/cmdline-opts/socks5-basic.d deleted file mode 100644 index f32e0bf3ea4e114d42821e4dbada1c998e1192f9..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/socks5-basic.d +++ /dev/null @@ -1,9 +0,0 @@ -Long: socks5-basic -Help: Enable username/password auth for SOCKS5 proxies -Added: 7.55.0 -Category: proxy auth -Example: --socks5-basic --socks5 hostname:4096 $URL ---- -Tells curl to use username/password authentication when connecting to a SOCKS5 -proxy. The username/password authentication is enabled by default. Use ---socks5-gssapi to force GSS-API authentication to SOCKS5 proxies. diff --git a/re2-rust/docs/cmdline-opts/socks5-gssapi-nec.d b/re2-rust/docs/cmdline-opts/socks5-gssapi-nec.d deleted file mode 100644 index 73cac7a2265bd17483d9ddd13b3731207f352e03..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/socks5-gssapi-nec.d +++ /dev/null @@ -1,10 +0,0 @@ -Long: socks5-gssapi-nec -Help: Compatibility with NEC SOCKS5 server -Added: 7.19.4 -Category: proxy auth -Example: --socks5-gssapi-nec --socks5 hostname:4096 $URL ---- -As part of the GSS-API negotiation a protection mode is negotiated. RFC 1961 -says in section 4.3/4.4 it should be protected, but the NEC reference -implementation does not. The option --socks5-gssapi-nec allows the -unprotected exchange of the protection mode negotiation. diff --git a/re2-rust/docs/cmdline-opts/socks5-gssapi-service.d b/re2-rust/docs/cmdline-opts/socks5-gssapi-service.d deleted file mode 100644 index 451be8e2d1a0b55709f30e90616e03bfbcbd80d7..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/socks5-gssapi-service.d +++ /dev/null @@ -1,14 +0,0 @@ -Long: socks5-gssapi-service -Arg: -Help: SOCKS5 proxy service name for GSS-API -Added: 7.19.4 -Category: proxy auth -Example: --socks5-gssapi-service sockd --socks5 hostname:4096 $URL ---- -The default service name for a socks server is rcmd/server-fqdn. This option -allows you to change it. - -Examples: --socks5 proxy-name --socks5-gssapi-service sockd would use -sockd/proxy-name --socks5 proxy-name --socks5-gssapi-service sockd/real-name -would use sockd/real-name for cases where the proxy-name does not match the -principal name. diff --git a/re2-rust/docs/cmdline-opts/socks5-gssapi.d b/re2-rust/docs/cmdline-opts/socks5-gssapi.d deleted file mode 100644 index 2ce806955b42aeee941e0ba31151acc5308763ea..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/socks5-gssapi.d +++ /dev/null @@ -1,10 +0,0 @@ -Long: socks5-gssapi -Help: Enable GSS-API auth for SOCKS5 proxies -Added: 7.55.0 -Category: proxy auth -Example: --socks5-gssapi --socks5 hostname:4096 $URL ---- -Tells curl to use GSS-API authentication when connecting to a SOCKS5 proxy. -The GSS-API authentication is enabled by default (if curl is compiled with -GSS-API support). Use --socks5-basic to force username/password authentication -to SOCKS5 proxies. diff --git a/re2-rust/docs/cmdline-opts/socks5-hostname.d b/re2-rust/docs/cmdline-opts/socks5-hostname.d deleted file mode 100644 index 729a7bf85902754d7080fe42d46f02d777e3df90..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/socks5-hostname.d +++ /dev/null @@ -1,21 +0,0 @@ -Long: socks5-hostname -Arg: -Help: SOCKS5 proxy, pass host name to proxy -Added: 7.18.0 -Category: proxy -Example: --socks5-hostname proxy.example:7000 $URL ---- -Use the specified SOCKS5 proxy (and let the proxy resolve the host name). If -the port number is not specified, it is assumed at port 1080. - -This option overrides any previous use of --proxy, as they are mutually -exclusive. - -Since 7.21.7, this option is superfluous since you can specify a socks5 -hostname proxy with --proxy using a socks5h:// protocol prefix. - -Since 7.52.0, --preproxy can be used to specify a SOCKS proxy at the same time ---proxy is used with an HTTP/HTTPS proxy. In such a case curl first connects to -the SOCKS proxy and then connects (through SOCKS) to the HTTP or HTTPS proxy. - -If this option is used several times, the last one will be used. diff --git a/re2-rust/docs/cmdline-opts/socks5.d b/re2-rust/docs/cmdline-opts/socks5.d deleted file mode 100644 index 99c740f885e54405a723bbe1471bd188571458f2..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/socks5.d +++ /dev/null @@ -1,23 +0,0 @@ -Long: socks5 -Arg: -Help: SOCKS5 proxy on given host + port -Added: 7.18.0 -Category: proxy -Example: --socks5 proxy.example:7000 $URL ---- -Use the specified SOCKS5 proxy - but resolve the host name locally. If the -port number is not specified, it is assumed at port 1080. - -This option overrides any previous use of --proxy, as they are mutually -exclusive. - -Since 7.21.7, this option is superfluous since you can specify a socks5 proxy -with --proxy using a socks5:// protocol prefix. - -Since 7.52.0, --preproxy can be used to specify a SOCKS proxy at the same time ---proxy is used with an HTTP/HTTPS proxy. In such a case curl first connects to -the SOCKS proxy and then connects (through SOCKS) to the HTTP or HTTPS proxy. - -If this option is used several times, the last one will be used. - -This option (as well as --socks4) does not work with IPV6, FTPS or LDAP. diff --git a/re2-rust/docs/cmdline-opts/speed-limit.d b/re2-rust/docs/cmdline-opts/speed-limit.d deleted file mode 100644 index 7bf8d5fb1b86b0bfa729895cb601566af186274d..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/speed-limit.d +++ /dev/null @@ -1,12 +0,0 @@ -Long: speed-limit -Short: Y -Arg: -Help: Stop transfers slower than this -Category: connection -Example: --speed-limit 300 --speed-time 10 $URL ---- -If a download is slower than this given speed (in bytes per second) for -speed-time seconds it gets aborted. speed-time is set with --speed-time and is -30 if not set. - -If this option is used several times, the last one will be used. diff --git a/re2-rust/docs/cmdline-opts/speed-time.d b/re2-rust/docs/cmdline-opts/speed-time.d deleted file mode 100644 index 6095214564ea7c2a23a99ddab9d36c6b2ea3e76a..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/speed-time.d +++ /dev/null @@ -1,15 +0,0 @@ -Long: speed-time -Short: y -Arg: -Help: Trigger 'speed-limit' abort after this time -Category: connection -Example: --speed-limit 300 --speed-time 10 $URL ---- -If a download is slower than speed-limit bytes per second during a speed-time -period, the download gets aborted. If speed-time is used, the default -speed-limit will be 1 unless set with --speed-limit. - -This option controls transfers and thus will not affect slow connects etc. If -this is a concern for you, try the --connect-timeout option. - -If this option is used several times, the last one will be used. diff --git a/re2-rust/docs/cmdline-opts/ssl-allow-beast.d b/re2-rust/docs/cmdline-opts/ssl-allow-beast.d deleted file mode 100644 index f54cf6416fbec3e46d86e57410aaf0a62fa81d9c..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/ssl-allow-beast.d +++ /dev/null @@ -1,13 +0,0 @@ -Long: ssl-allow-beast -Help: Allow security flaw to improve interop -Added: 7.25.0 -Category: tls -Example: --ssl-allow-beast $URL ---- -This option tells curl to not work around a security flaw in the SSL3 and -TLS1.0 protocols known as BEAST. If this option isn't used, the SSL layer may -use workarounds known to cause interoperability problems with some older SSL -implementations. - -**WARNING**: this option loosens the SSL security, and by using this flag you -ask for exactly that. diff --git a/re2-rust/docs/cmdline-opts/ssl-auto-client-cert.d b/re2-rust/docs/cmdline-opts/ssl-auto-client-cert.d deleted file mode 100644 index 7581bdff688c18ca02e4bbf099ad3d9235abef15..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/ssl-auto-client-cert.d +++ /dev/null @@ -1,13 +0,0 @@ -Long: ssl-auto-client-cert -Help: Use auto client certificate (Schannel) -Added: 7.77.0 -See-also: proxy-ssl-auto-client-cert -Category: tls -Example: --ssl-auto-client-cert $URL ---- -Tell libcurl to automatically locate and use a client certificate for -authentication, when requested by the server. This option is only supported -for Schannel (the native Windows SSL library). Prior to 7.77.0 this was the -default behavior in libcurl with Schannel. Since the server can request any -certificate that supports client authentication in the OS certificate store it -could be a privacy violation and unexpected. diff --git a/re2-rust/docs/cmdline-opts/ssl-no-revoke.d b/re2-rust/docs/cmdline-opts/ssl-no-revoke.d deleted file mode 100644 index dde77aa113c0a75c4f6584325bcbe331957ecd94..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/ssl-no-revoke.d +++ /dev/null @@ -1,9 +0,0 @@ -Long: ssl-no-revoke -Help: Disable cert revocation checks (Schannel) -Added: 7.44.0 -Category: tls -Example: --ssl-no-revoke $URL ---- -(Schannel) This option tells curl to disable certificate revocation checks. -WARNING: this option loosens the SSL security, and by using this flag you ask -for exactly that. diff --git a/re2-rust/docs/cmdline-opts/ssl-reqd.d b/re2-rust/docs/cmdline-opts/ssl-reqd.d deleted file mode 100644 index 489be00d97c7f2dc6073be7ff489ec86b4d5410c..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/ssl-reqd.d +++ /dev/null @@ -1,11 +0,0 @@ -Long: ssl-reqd -Help: Require SSL/TLS -Protocols: FTP IMAP POP3 SMTP -Added: 7.20.0 -Category: tls -Example: --ssl-reqd ftp://example.com ---- -Require SSL/TLS for the connection. Terminates the connection if the server -doesn't support SSL/TLS. - -This option was formerly known as --ftp-ssl-reqd. diff --git a/re2-rust/docs/cmdline-opts/ssl-revoke-best-effort.d b/re2-rust/docs/cmdline-opts/ssl-revoke-best-effort.d deleted file mode 100644 index 2db32192ee363559b0910526b7bff86a746950c3..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/ssl-revoke-best-effort.d +++ /dev/null @@ -1,9 +0,0 @@ -Long: ssl-revoke-best-effort -Help: Ignore missing/offline cert CRL dist points -Added: 7.70.0 -Category: tls -Example: --ssl-revoke-best-effort $URL ---- -(Schannel) This option tells curl to ignore certificate revocation checks when -they failed due to missing/offline distribution points for the revocation check -lists. diff --git a/re2-rust/docs/cmdline-opts/ssl.d b/re2-rust/docs/cmdline-opts/ssl.d deleted file mode 100644 index bc339faed30581d1e29a96e22bfc67d31e06ce55..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/ssl.d +++ /dev/null @@ -1,13 +0,0 @@ -Long: ssl -Help: Try SSL/TLS -Protocols: FTP IMAP POP3 SMTP -Added: 7.20.0 -Category: tls -Example: --ssl pop3://example.com/ ---- -Try to use SSL/TLS for the connection. Reverts to a non-secure connection if -the server doesn't support SSL/TLS. See also --ftp-ssl-control and --ssl-reqd -for different levels of encryption required. - -This option was formerly known as --ftp-ssl (Added in 7.11.0). That option -name can still be used but will be removed in a future version. diff --git a/re2-rust/docs/cmdline-opts/sslv2.d b/re2-rust/docs/cmdline-opts/sslv2.d deleted file mode 100644 index d96a6cc8d8592a57190d38f936b5a017429710df..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/sslv2.d +++ /dev/null @@ -1,15 +0,0 @@ -Short: 2 -Long: sslv2 -Tags: Versions -Protocols: SSL -Added: -Mutexed: sslv3 tlsv1 tlsv1.1 tlsv1.2 -Requires: TLS -See-also: http1.1 http2 -Help: Use SSLv2 -Category: tls -Example: --sslv2 $URL ---- -This option previously asked curl to use SSLv2, but starting in curl 7.77.0 -this instruction is ignored. SSLv2 is widely considered insecure (see RFC -6176). diff --git a/re2-rust/docs/cmdline-opts/sslv3.d b/re2-rust/docs/cmdline-opts/sslv3.d deleted file mode 100644 index 3ee483d2aecb0f785a91c18f305a1fc3942cd0a4..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/sslv3.d +++ /dev/null @@ -1,15 +0,0 @@ -Short: 3 -Long: sslv3 -Tags: Versions -Protocols: SSL -Added: -Mutexed: sslv2 tlsv1 tlsv1.1 tlsv1.2 -Requires: TLS -See-also: http1.1 http2 -Help: Use SSLv3 -Category: tls -Example: --sslv3 $URL ---- -This option previously asked curl to use SSLv3, but starting in curl 7.77.0 -this instruction is ignored. SSLv3 is widely considered insecure (see RFC -7568). diff --git a/re2-rust/docs/cmdline-opts/stderr.d b/re2-rust/docs/cmdline-opts/stderr.d deleted file mode 100644 index c0f0efa38bbb67073901dd748f4c5dc8e361ae4d..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/stderr.d +++ /dev/null @@ -1,14 +0,0 @@ -Long: stderr -Arg: -Help: Where to redirect stderr -See-also: verbose silent -Category: verbose -Example: --stderr output.txt $URL ---- -Redirect all writes to stderr to the specified file instead. If the file name -is a plain '-', it is instead written to stdout. - -This option is global and does not need to be specified for each use of ---next. - -If this option is used several times, the last one will be used. diff --git a/re2-rust/docs/cmdline-opts/styled-output.d b/re2-rust/docs/cmdline-opts/styled-output.d deleted file mode 100644 index bf636019a63b04f15780329732b0fd1385fe9067..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/styled-output.d +++ /dev/null @@ -1,11 +0,0 @@ -Long: styled-output -Help: Enable styled output for HTTP headers -Added: 7.61.0 -Category: verbose -Example: --styled-output -I $URL ---- -Enables the automatic use of bold font styles when writing HTTP headers to the -terminal. Use --no-styled-output to switch them off. - -This option is global and does not need to be specified for each use of ---next. diff --git a/re2-rust/docs/cmdline-opts/suppress-connect-headers.d b/re2-rust/docs/cmdline-opts/suppress-connect-headers.d deleted file mode 100644 index 71078e8877dbddc9fc3a41896114fd85ce29a73c..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/suppress-connect-headers.d +++ /dev/null @@ -1,10 +0,0 @@ -Long: suppress-connect-headers -Help: Suppress proxy CONNECT response headers -See-also: dump-header include proxytunnel -Category: proxy -Example: --suppress-connect-headers --include -x proxy $URL ---- -When --proxytunnel is used and a CONNECT request is made don't output proxy -CONNECT response headers. This option is meant to be used with --dump-header or ---include which are used to show protocol headers in the output. It has no -effect on debug options such as --verbose or --trace, or any statistics. diff --git a/re2-rust/docs/cmdline-opts/tcp-fastopen.d b/re2-rust/docs/cmdline-opts/tcp-fastopen.d deleted file mode 100644 index e7e9d2e9af488e374cd16abce070f171877dab75..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/tcp-fastopen.d +++ /dev/null @@ -1,7 +0,0 @@ -Long: tcp-fastopen -Added: 7.49.0 -Help: Use TCP Fast Open -Category: connection -Example: --tcp-fastopen $URL ---- -Enable use of TCP Fast Open (RFC7413). diff --git a/re2-rust/docs/cmdline-opts/tcp-nodelay.d b/re2-rust/docs/cmdline-opts/tcp-nodelay.d deleted file mode 100644 index 97cd30aa0e7e9547a7fc69af906baa7de5ecf929..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/tcp-nodelay.d +++ /dev/null @@ -1,11 +0,0 @@ -Long: tcp-nodelay -Help: Use the TCP_NODELAY option -Added: 7.11.2 -Category: connection -Example: --tcp-nodelay $URL ---- -Turn on the TCP_NODELAY option. See the *curl_easy_setopt(3)* man page for -details about this option. - -Since 7.50.2, curl sets this option by default and you need to explicitly -switch it off if you don't want it on. diff --git a/re2-rust/docs/cmdline-opts/telnet-option.d b/re2-rust/docs/cmdline-opts/telnet-option.d deleted file mode 100644 index 3475cb596c753369104beb73ebdf46395badca72..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/telnet-option.d +++ /dev/null @@ -1,14 +0,0 @@ -Long: telnet-option -Short: t -Arg: -Help: Set telnet option -Category: telnet -Example: -t TTYPE=vt100 telnet://example.com/ ---- -Pass options to the telnet protocol. Supported options are: - -TTYPE= Sets the terminal type. - -XDISPLOC= Sets the X display location. - -NEW_ENV= Sets an environment variable. diff --git a/re2-rust/docs/cmdline-opts/tftp-blksize.d b/re2-rust/docs/cmdline-opts/tftp-blksize.d deleted file mode 100644 index 3b19e5cf786c52775691ab824be9960829b3c9b9..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/tftp-blksize.d +++ /dev/null @@ -1,13 +0,0 @@ -Long: tftp-blksize -Arg: -Help: Set TFTP BLKSIZE option -Protocols: TFTP -Added: 7.20.0 -Category: tftp -Example: --tftp-blksize 1024 tftp://example.com/file ---- -Set TFTP BLKSIZE option (must be >512). This is the block size that curl will -try to use when transferring data to or from a TFTP server. By default 512 -bytes will be used. - -If this option is used several times, the last one will be used. diff --git a/re2-rust/docs/cmdline-opts/tftp-no-options.d b/re2-rust/docs/cmdline-opts/tftp-no-options.d deleted file mode 100644 index 9ff334b86877a6d2ca0a453414843f83fdef87b4..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/tftp-no-options.d +++ /dev/null @@ -1,12 +0,0 @@ -Long: tftp-no-options -Help: Do not send any TFTP options -Protocols: TFTP -Added: 7.48.0 -Category: tftp -Example: --tftp-no-options tftp://192.168.0.1/ ---- -Tells curl not to send TFTP options requests. - -This option improves interop with some legacy servers that do not acknowledge -or properly implement TFTP options. When this option is used --tftp-blksize is -ignored. diff --git a/re2-rust/docs/cmdline-opts/time-cond.d b/re2-rust/docs/cmdline-opts/time-cond.d deleted file mode 100644 index f82f497fc0d16b48e3b80527c5551093ad30dc5f..0000000000000000000000000000000000000000 --- a/re2-rust/docs/cmdline-opts/time-cond.d +++ /dev/null @@ -1,21 +0,0 @@ -Long: time-cond -Short: z -Arg: