html-to-markdown 2.27.2 → 2.27.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Gemfile.lock +8 -8
- data/ext/html-to-markdown-rb/native/Cargo.toml +1 -1
- data/lib/html_to_markdown/version.rb +1 -1
- data/rust-vendor/getrandom/.cargo-checksum.json +1 -1
- data/rust-vendor/getrandom/.cargo_vcs_info.json +1 -1
- data/rust-vendor/getrandom/CHANGELOG.md +62 -43
- data/rust-vendor/getrandom/Cargo.lock +49 -56
- data/rust-vendor/getrandom/Cargo.toml +2 -2
- data/rust-vendor/getrandom/Cargo.toml.orig +2 -2
- data/rust-vendor/getrandom/src/backends/efi_rng.rs +8 -10
- data/rust-vendor/getrandom/src/backends/getentropy.rs +13 -4
- data/rust-vendor/getrandom/src/backends/linux_android_with_fallback.rs +10 -25
- data/rust-vendor/getrandom/src/backends/netbsd.rs +17 -25
- data/rust-vendor/getrandom/src/backends/rdrand.rs +15 -9
- data/rust-vendor/getrandom/src/backends/rndr.rs +2 -1
- data/rust-vendor/getrandom/src/backends/vxworks.rs +7 -3
- data/rust-vendor/getrandom/src/backends/windows.rs +21 -5
- data/rust-vendor/getrandom/src/utils/lazy_bool.rs +39 -0
- data/rust-vendor/getrandom/src/utils/lazy_ptr.rs +57 -0
- data/rust-vendor/html-to-markdown-rs/Cargo.toml +2 -2
- data/rust-vendor/html-to-markdown-rs/src/converter/text_node.rs +2 -1
- data/rust-vendor/html-to-markdown-rs/tests/issue_216_217_regressions.rs +82 -0
- data/rust-vendor/quote/.cargo-checksum.json +1 -1
- data/rust-vendor/quote/.cargo_vcs_info.json +1 -1
- data/rust-vendor/quote/.github/workflows/ci.yml +2 -2
- data/rust-vendor/quote/Cargo.lock +21 -21
- data/rust-vendor/quote/Cargo.toml +2 -2
- data/rust-vendor/quote/Cargo.toml.orig +2 -2
- data/rust-vendor/quote/README.md +0 -1
- data/rust-vendor/quote/src/lib.rs +1 -1
- data/rust-vendor/quote/src/to_tokens.rs +7 -0
- data/rust-vendor/quote/tests/ui/not-quotable.stderr +1 -1
- data/rust-vendor/quote/tests/ui/not-repeatable.stderr +3 -11
- data/rust-vendor/r-efi/.cargo-checksum.json +1 -1
- data/rust-vendor/r-efi/.cargo_vcs_info.json +1 -1
- data/rust-vendor/r-efi/AUTHORS +1 -0
- data/rust-vendor/r-efi/Cargo.lock +1 -1
- data/rust-vendor/r-efi/Cargo.toml +1 -3
- data/rust-vendor/r-efi/Cargo.toml.orig +1 -5
- data/rust-vendor/r-efi/NEWS.md +16 -0
- data/rust-vendor/r-efi/src/base.rs +1 -1
- data/rust-vendor/r-efi/src/lib.rs +27 -12
- data/rust-vendor/r-efi/src/protocols/absolute_pointer.rs +4 -4
- data/rust-vendor/r-efi/src/protocols/block_io.rs +8 -8
- data/rust-vendor/r-efi/src/protocols/bus_specific_driver_override.rs +2 -2
- data/rust-vendor/r-efi/src/protocols/debug_support.rs +10 -10
- data/rust-vendor/r-efi/src/protocols/debugport.rs +8 -8
- data/rust-vendor/r-efi/src/protocols/decompress.rs +4 -4
- data/rust-vendor/r-efi/src/protocols/device_path_from_text.rs +4 -4
- data/rust-vendor/r-efi/src/protocols/device_path_to_text.rs +4 -4
- data/rust-vendor/r-efi/src/protocols/device_path_utilities.rs +16 -16
- data/rust-vendor/r-efi/src/protocols/disk_io.rs +4 -4
- data/rust-vendor/r-efi/src/protocols/disk_io2.rs +8 -8
- data/rust-vendor/r-efi/src/protocols/driver_binding.rs +6 -6
- data/rust-vendor/r-efi/src/protocols/driver_diagnostics2.rs +2 -2
- data/rust-vendor/r-efi/src/protocols/driver_family_override.rs +2 -2
- data/rust-vendor/r-efi/src/protocols/file.rs +28 -28
- data/rust-vendor/r-efi/src/protocols/graphics_output.rs +6 -6
- data/rust-vendor/r-efi/src/protocols/hii_database.rs +24 -24
- data/rust-vendor/r-efi/src/protocols/hii_font.rs +8 -8
- data/rust-vendor/r-efi/src/protocols/hii_font_ex.rs +10 -10
- data/rust-vendor/r-efi/src/protocols/hii_string.rs +10 -10
- data/rust-vendor/r-efi/src/protocols/ip4.rs +16 -16
- data/rust-vendor/r-efi/src/protocols/ip6.rs +18 -18
- data/rust-vendor/r-efi/src/protocols/load_file.rs +2 -2
- data/rust-vendor/r-efi/src/protocols/loaded_image.rs +2 -2
- data/rust-vendor/r-efi/src/protocols/managed_network.rs +16 -16
- data/rust-vendor/r-efi/src/protocols/memory_attribute.rs +6 -6
- data/rust-vendor/r-efi/src/protocols/mp_services.rs +15 -15
- data/rust-vendor/r-efi/src/protocols/pci_io.rs +26 -26
- data/rust-vendor/r-efi/src/protocols/platform_driver_override.rs +6 -6
- data/rust-vendor/r-efi/src/protocols/rng.rs +4 -4
- data/rust-vendor/r-efi/src/protocols/service_binding.rs +4 -4
- data/rust-vendor/r-efi/src/protocols/shell.rs +81 -81
- data/rust-vendor/r-efi/src/protocols/shell_dynamic_command.rs +4 -4
- data/rust-vendor/r-efi/src/protocols/simple_file_system.rs +2 -2
- data/rust-vendor/r-efi/src/protocols/simple_network.rs +26 -26
- data/rust-vendor/r-efi/src/protocols/simple_text_input.rs +4 -4
- data/rust-vendor/r-efi/src/protocols/simple_text_input_ex.rs +11 -11
- data/rust-vendor/r-efi/src/protocols/simple_text_output.rs +18 -18
- data/rust-vendor/r-efi/src/protocols/tcp4.rs +20 -20
- data/rust-vendor/r-efi/src/protocols/tcp6.rs +18 -18
- data/rust-vendor/r-efi/src/protocols/timestamp.rs +3 -3
- data/rust-vendor/r-efi/src/protocols/udp4.rs +16 -16
- data/rust-vendor/r-efi/src/protocols/udp6.rs +14 -14
- data/rust-vendor/r-efi/src/system.rs +115 -115
- data/rust-vendor/r-efi/src/vendor/intel/console_control.rs +6 -6
- data/rust-vendor/r-efi-5.3.0/.cargo-checksum.json +1 -0
- data/rust-vendor/r-efi-5.3.0/.cargo_vcs_info.json +6 -0
- data/rust-vendor/r-efi-5.3.0/.github/workflows/publish.yml +39 -0
- data/rust-vendor/r-efi-5.3.0/.github/workflows/rust-tests.yml +125 -0
- data/rust-vendor/r-efi-5.3.0/AUTHORS +74 -0
- data/rust-vendor/r-efi-5.3.0/Cargo.lock +16 -0
- data/rust-vendor/r-efi-5.3.0/Cargo.toml +70 -0
- data/rust-vendor/r-efi-5.3.0/Cargo.toml.orig +51 -0
- data/rust-vendor/r-efi-5.3.0/Makefile +85 -0
- data/rust-vendor/r-efi-5.3.0/NEWS.md +301 -0
- data/rust-vendor/r-efi-5.3.0/README.md +99 -0
- data/rust-vendor/r-efi-5.3.0/examples/freestanding.rs +34 -0
- data/rust-vendor/r-efi-5.3.0/examples/gop-query.rs +188 -0
- data/rust-vendor/r-efi-5.3.0/examples/hello-world.rs +55 -0
- data/rust-vendor/r-efi-5.3.0/src/base.rs +993 -0
- data/rust-vendor/r-efi-5.3.0/src/hii.rs +1300 -0
- data/rust-vendor/r-efi-5.3.0/src/lib.rs +182 -0
- data/rust-vendor/r-efi-5.3.0/src/protocols/absolute_pointer.rs +69 -0
- data/rust-vendor/r-efi-5.3.0/src/protocols/block_io.rs +70 -0
- data/rust-vendor/r-efi-5.3.0/src/protocols/bus_specific_driver_override.rs +32 -0
- data/rust-vendor/r-efi-5.3.0/src/protocols/debug_support.rs +835 -0
- data/rust-vendor/r-efi-5.3.0/src/protocols/debugport.rs +42 -0
- data/rust-vendor/r-efi-5.3.0/src/protocols/decompress.rs +37 -0
- data/rust-vendor/r-efi-5.3.0/src/protocols/device_path.rs +82 -0
- data/rust-vendor/r-efi-5.3.0/src/protocols/device_path_from_text.rs +26 -0
- data/rust-vendor/r-efi-5.3.0/src/protocols/device_path_to_text.rs +30 -0
- data/rust-vendor/r-efi-5.3.0/src/protocols/device_path_utilities.rs +63 -0
- data/rust-vendor/r-efi-5.3.0/src/protocols/disk_io.rs +40 -0
- data/rust-vendor/r-efi-5.3.0/src/protocols/disk_io2.rs +58 -0
- data/rust-vendor/r-efi-5.3.0/src/protocols/driver_binding.rs +42 -0
- data/rust-vendor/r-efi-5.3.0/src/protocols/driver_diagnostics2.rs +38 -0
- data/rust-vendor/r-efi-5.3.0/src/protocols/driver_family_override.rs +23 -0
- data/rust-vendor/r-efi-5.3.0/src/protocols/file.rs +183 -0
- data/rust-vendor/r-efi-5.3.0/src/protocols/graphics_output.rs +103 -0
- data/rust-vendor/r-efi-5.3.0/src/protocols/hii_database.rs +299 -0
- data/rust-vendor/r-efi-5.3.0/src/protocols/hii_font.rs +87 -0
- data/rust-vendor/r-efi-5.3.0/src/protocols/hii_font_ex.rs +107 -0
- data/rust-vendor/r-efi-5.3.0/src/protocols/hii_package_list.rs +14 -0
- data/rust-vendor/r-efi-5.3.0/src/protocols/hii_string.rs +71 -0
- data/rust-vendor/r-efi-5.3.0/src/protocols/ip4.rs +202 -0
- data/rust-vendor/r-efi-5.3.0/src/protocols/ip6.rs +264 -0
- data/rust-vendor/r-efi-5.3.0/src/protocols/load_file.rs +26 -0
- data/rust-vendor/r-efi-5.3.0/src/protocols/load_file2.rs +15 -0
- data/rust-vendor/r-efi-5.3.0/src/protocols/loaded_image.rs +39 -0
- data/rust-vendor/r-efi-5.3.0/src/protocols/loaded_image_device_path.rs +13 -0
- data/rust-vendor/r-efi-5.3.0/src/protocols/managed_network.rs +147 -0
- data/rust-vendor/r-efi-5.3.0/src/protocols/memory_attribute.rs +40 -0
- data/rust-vendor/r-efi-5.3.0/src/protocols/mp_services.rs +121 -0
- data/rust-vendor/r-efi-5.3.0/src/protocols/pci_io.rs +203 -0
- data/rust-vendor/r-efi-5.3.0/src/protocols/platform_driver_override.rs +46 -0
- data/rust-vendor/r-efi-5.3.0/src/protocols/rng.rs +83 -0
- data/rust-vendor/r-efi-5.3.0/src/protocols/service_binding.rs +20 -0
- data/rust-vendor/r-efi-5.3.0/src/protocols/shell.rs +295 -0
- data/rust-vendor/r-efi-5.3.0/src/protocols/shell_dynamic_command.rs +33 -0
- data/rust-vendor/r-efi-5.3.0/src/protocols/shell_parameters.rs +23 -0
- data/rust-vendor/r-efi-5.3.0/src/protocols/simple_file_system.rs +26 -0
- data/rust-vendor/r-efi-5.3.0/src/protocols/simple_network.rs +196 -0
- data/rust-vendor/r-efi-5.3.0/src/protocols/simple_text_input.rs +38 -0
- data/rust-vendor/r-efi-5.3.0/src/protocols/simple_text_input_ex.rs +85 -0
- data/rust-vendor/r-efi-5.3.0/src/protocols/simple_text_output.rs +86 -0
- data/rust-vendor/r-efi-5.3.0/src/protocols/tcp4.rs +224 -0
- data/rust-vendor/r-efi-5.3.0/src/protocols/tcp6.rs +202 -0
- data/rust-vendor/r-efi-5.3.0/src/protocols/timestamp.rs +32 -0
- data/rust-vendor/r-efi-5.3.0/src/protocols/udp4.rs +151 -0
- data/rust-vendor/r-efi-5.3.0/src/protocols/udp6.rs +137 -0
- data/rust-vendor/r-efi-5.3.0/src/protocols.rs +54 -0
- data/rust-vendor/r-efi-5.3.0/src/system.rs +1130 -0
- data/rust-vendor/r-efi-5.3.0/src/vendor/intel/console_control.rs +37 -0
- data/rust-vendor/r-efi-5.3.0/src/vendor.rs +10 -0
- data/rust-vendor/tokio/.cargo-checksum.json +1 -1
- data/rust-vendor/tokio/.cargo_vcs_info.json +1 -1
- data/rust-vendor/tokio/CHANGELOG.md +94 -0
- data/rust-vendor/tokio/Cargo.lock +1549 -0
- data/rust-vendor/tokio/Cargo.toml +96 -83
- data/rust-vendor/tokio/Cargo.toml.orig +7 -7
- data/rust-vendor/tokio/README.md +1 -1
- data/rust-vendor/tokio/src/fs/open_options.rs +4 -1
- data/rust-vendor/tokio/src/fs/read.rs +4 -1
- data/rust-vendor/tokio/src/fs/write.rs +4 -1
- data/rust-vendor/tokio/src/io/async_write.rs +3 -4
- data/rust-vendor/tokio/src/io/poll_evented.rs +23 -1
- data/rust-vendor/tokio/src/io/stderr.rs +15 -1
- data/rust-vendor/tokio/src/io/stdout.rs +14 -0
- data/rust-vendor/tokio/src/io/util/async_write_ext.rs +2 -2
- data/rust-vendor/tokio/src/io/util/write_buf.rs +11 -2
- data/rust-vendor/tokio/src/lib.rs +12 -28
- data/rust-vendor/tokio/src/macros/select.rs +6 -8
- data/rust-vendor/tokio/src/net/tcp/socket.rs +25 -1
- data/rust-vendor/tokio/src/net/tcp/stream.rs +40 -1
- data/rust-vendor/tokio/src/process/unix/pidfd_reaper.rs +1 -41
- data/rust-vendor/tokio/src/runtime/blocking/pool.rs +18 -14
- data/rust-vendor/tokio/src/runtime/builder.rs +10 -4
- data/rust-vendor/tokio/src/runtime/handle.rs +3 -2
- data/rust-vendor/tokio/src/runtime/io/driver/uring.rs +49 -61
- data/rust-vendor/tokio/src/runtime/io/driver.rs +6 -5
- data/rust-vendor/tokio/src/runtime/mod.rs +20 -1
- data/rust-vendor/tokio/src/runtime/runtime.rs +71 -1
- data/rust-vendor/tokio/src/runtime/scheduler/current_thread/mod.rs +24 -8
- data/rust-vendor/tokio/src/runtime/scheduler/multi_thread/worker.rs +5 -0
- data/rust-vendor/tokio/src/runtime/task/core.rs +1 -0
- data/rust-vendor/tokio/src/runtime/task/join.rs +7 -3
- data/rust-vendor/tokio/src/runtime/task/list.rs +5 -3
- data/rust-vendor/tokio/src/runtime/task/mod.rs +0 -5
- data/rust-vendor/tokio/src/runtime/tests/loom_blocking.rs +39 -1
- data/rust-vendor/tokio/src/signal/mod.rs +6 -17
- data/rust-vendor/tokio/src/signal/registry.rs +1 -1
- data/rust-vendor/tokio/src/signal/unix.rs +24 -44
- data/rust-vendor/tokio/src/signal/windows/sys.rs +52 -64
- data/rust-vendor/tokio/src/signal/windows.rs +35 -23
- data/rust-vendor/tokio/src/sync/mpsc/mod.rs +3 -1
- data/rust-vendor/tokio/src/sync/oneshot.rs +13 -0
- data/rust-vendor/tokio/src/sync/rwlock.rs +4 -5
- data/rust-vendor/tokio/src/sync/tests/loom_oneshot.rs +27 -1
- data/rust-vendor/tokio/src/task/blocking.rs +16 -1
- data/rust-vendor/tokio/src/task/builder.rs +2 -2
- data/rust-vendor/tokio/src/task/mod.rs +1 -1
- data/rust-vendor/tokio/src/task/spawn.rs +8 -3
- data/rust-vendor/tokio/src/task/yield_now.rs +13 -23
- data/rust-vendor/tokio/src/time/clock.rs +62 -0
- data/rust-vendor/tokio/src/util/memchr.rs +32 -4
- data/rust-vendor/tokio/src/util/sharded_list.rs +6 -4
- data/rust-vendor/tokio/tests/fs_link.rs +54 -0
- data/rust-vendor/tokio/tests/io_async_fd_memory_leak.rs +209 -0
- data/rust-vendor/tokio/tests/io_write_buf.rs +56 -0
- data/rust-vendor/tokio/tests/process_issue_7144.rs +8 -0
- data/rust-vendor/tokio/tests/rt_basic.rs +41 -0
- data/rust-vendor/tokio/tests/rt_common_before_park.rs +92 -0
- data/rust-vendor/tokio/tests/rt_metrics.rs +1 -1
- data/rust-vendor/tokio/tests/rt_panic.rs +12 -0
- data/rust-vendor/tokio/tests/rt_shutdown_err.rs +82 -0
- data/rust-vendor/tokio/tests/rt_threaded.rs +49 -1
- data/rust-vendor/tokio/tests/rt_unstable_metrics.rs +32 -0
- data/rust-vendor/tokio/tests/tcp_connect.rs +2 -3
- data/rust-vendor/tokio/tests/tcp_shutdown.rs +1 -3
- data/rust-vendor/tokio/tests/tcp_socket.rs +3 -4
- data/rust-vendor/tokio/tests/tcp_stream.rs +3 -0
- metadata +78 -3
- data/rust-vendor/getrandom/src/utils/lazy.rs +0 -64
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2c1f001483774ae8b601ba6953cf5e42a798840cc2d99f1048f54977cde509cf
|
|
4
|
+
data.tar.gz: 1d3953f85ef0cd47ba65ee7f83f15f7233a31b8e8dd1c370024d85f893539eda
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 95258f98b61c5029f06e8c91f7f78e37fa74275038b6846ade5cbf7a5d16bced41336ec4f5eb7ddf6c110c41a30a2461eb6f293c19adde5c0c038f0bf67a272f
|
|
7
|
+
data.tar.gz: 6dae1754667432115bbc7a18b3eb92f95a20bc1e8fc1de24672d23a63fb7f59d80beef17204a60eb2ab2a1d886232b031a141ba827f925bbbbbac77d6cc97e3c
|
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
html-to-markdown (2.27.
|
|
4
|
+
html-to-markdown (2.27.3)
|
|
5
5
|
rb_sys (>= 0.9, < 1.0)
|
|
6
6
|
|
|
7
7
|
GEM
|
|
@@ -49,7 +49,7 @@ GEM
|
|
|
49
49
|
rb-fsevent (~> 0.10, >= 0.10.3)
|
|
50
50
|
rb-inotify (~> 0.9, >= 0.9.10)
|
|
51
51
|
logger (1.7.0)
|
|
52
|
-
mcp (0.
|
|
52
|
+
mcp (0.8.0)
|
|
53
53
|
json-schema (>= 4.1)
|
|
54
54
|
minitest (6.0.2)
|
|
55
55
|
drb (~> 2.0)
|
|
@@ -60,7 +60,7 @@ GEM
|
|
|
60
60
|
ast (~> 2.4.1)
|
|
61
61
|
racc
|
|
62
62
|
prism (1.9.0)
|
|
63
|
-
public_suffix (7.0.
|
|
63
|
+
public_suffix (7.0.5)
|
|
64
64
|
racc (1.8.1)
|
|
65
65
|
rainbow (3.1.1)
|
|
66
66
|
rake (13.3.1)
|
|
@@ -89,7 +89,7 @@ GEM
|
|
|
89
89
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
90
90
|
rspec-support (~> 3.13.0)
|
|
91
91
|
rspec-support (3.13.7)
|
|
92
|
-
rubocop (1.85.
|
|
92
|
+
rubocop (1.85.1)
|
|
93
93
|
json (~> 2.3)
|
|
94
94
|
language_server-protocol (~> 3.17.0.2)
|
|
95
95
|
lint_roller (~> 1.1.0)
|
|
@@ -172,7 +172,7 @@ CHECKSUMS
|
|
|
172
172
|
ffi (1.17.3-x86_64-darwin) sha256=1f211811eb5cfaa25998322cdd92ab104bfbd26d1c4c08471599c511f2c00bb5
|
|
173
173
|
ffi (1.17.3-x86_64-linux-gnu) sha256=3746b01f677aae7b16dc1acb7cb3cc17b3e35bdae7676a3f568153fb0e2c887f
|
|
174
174
|
fileutils (1.8.0) sha256=8c6b1df54e2540bdb2f39258f08af78853aa70bad52b4d394bbc6424593c6e02
|
|
175
|
-
html-to-markdown (2.27.
|
|
175
|
+
html-to-markdown (2.27.3)
|
|
176
176
|
i18n (1.14.8) sha256=285778639134865c5e0f6269e0b818256017e8cde89993fdfcbfb64d088824a5
|
|
177
177
|
json (2.18.1) sha256=fe112755501b8d0466b5ada6cf50c8c3f41e897fa128ac5d263ec09eedc9f986
|
|
178
178
|
json-schema (6.1.0) sha256=6bf70a2cfb6dfd5a06da28093fa8190f324c88eabd36a7f47097f227321dc702
|
|
@@ -180,13 +180,13 @@ CHECKSUMS
|
|
|
180
180
|
lint_roller (1.1.0) sha256=2c0c845b632a7d172cb849cc90c1bce937a28c5c8ccccb50dfd46a485003cc87
|
|
181
181
|
listen (3.10.0) sha256=c6e182db62143aeccc2e1960033bebe7445309c7272061979bb098d03760c9d2
|
|
182
182
|
logger (1.7.0) sha256=196edec7cc44b66cfb40f9755ce11b392f21f7967696af15d274dde7edff0203
|
|
183
|
-
mcp (0.
|
|
183
|
+
mcp (0.8.0) sha256=ae8bd146bb8e168852866fd26f805f52744f6326afb3211e073f78a95e0c34fb
|
|
184
184
|
minitest (6.0.2) sha256=db6e57956f6ecc6134683b4c87467d6dd792323c7f0eea7b93f66bd284adbc3d
|
|
185
185
|
mutex_m (0.3.0) sha256=cfcb04ac16b69c4813777022fdceda24e9f798e48092a2b817eb4c0a782b0751
|
|
186
186
|
parallel (1.27.0) sha256=4ac151e1806b755fb4e2dc2332cbf0e54f2e24ba821ff2d3dcf86bf6dc4ae130
|
|
187
187
|
parser (3.3.10.2) sha256=6f60c84aa4bdcedb6d1a2434b738fe8a8136807b6adc8f7f53b97da9bc4e9357
|
|
188
188
|
prism (1.9.0) sha256=7b530c6a9f92c24300014919c9dcbc055bf4cdf51ec30aed099b06cd6674ef85
|
|
189
|
-
public_suffix (7.0.
|
|
189
|
+
public_suffix (7.0.5) sha256=1a8bb08f1bbea19228d3bed6e5ed908d1cb4f7c2726d18bd9cadf60bc676f623
|
|
190
190
|
racc (1.8.1) sha256=4a7f6929691dbec8b5209a0b373bc2614882b55fc5d2e447a21aaa691303d62f
|
|
191
191
|
rainbow (3.1.1) sha256=039491aa3a89f42efa1d6dec2fc4e62ede96eb6acd95e52f1ad581182b79bc6a
|
|
192
192
|
rake (13.3.1) sha256=8c9e89d09f66a26a01264e7e3480ec0607f0c497a861ef16063604b1b08eb19c
|
|
@@ -202,7 +202,7 @@ CHECKSUMS
|
|
|
202
202
|
rspec-expectations (3.13.5) sha256=33a4d3a1d95060aea4c94e9f237030a8f9eae5615e9bd85718fe3a09e4b58836
|
|
203
203
|
rspec-mocks (3.13.8) sha256=086ad3d3d17533f4237643de0b5c42f04b66348c28bf6b9c2d3f4a3b01af1d47
|
|
204
204
|
rspec-support (3.13.7) sha256=0640e5570872aafefd79867901deeeeb40b0c9875a36b983d85f54fb7381c47c
|
|
205
|
-
rubocop (1.85.
|
|
205
|
+
rubocop (1.85.1) sha256=3dbcf9e961baa4c376eeeb2a03913dca5e3987033b04d38fa538aa1e7406cc77
|
|
206
206
|
rubocop-ast (1.49.0) sha256=49c3676d3123a0923d333e20c6c2dbaaae2d2287b475273fddee0c61da9f71fd
|
|
207
207
|
rubocop-rspec (3.9.0) sha256=8fa70a3619408237d789aeecfb9beef40576acc855173e60939d63332fdb55e2
|
|
208
208
|
ruby-progressbar (1.13.0) sha256=80fc9c47a9b640d6834e0dc7b3c94c9df37f08cb072b7761e4a71e22cff29b33
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"files":{".cargo_vcs_info.json":"
|
|
1
|
+
{"files":{".cargo_vcs_info.json":"b8458668d98047d4fcbd7f1ccffb0edf72a20c485832450ca8a59bbf6f363b3b","CHANGELOG.md":"ffa0395680034d5493e9a96737f5e393630fc1bd1622c1c6463a85b3bb9c119f","Cargo.lock":"70c549d961ff245cef65753b2ef43260e44ca34dc0a6fbe7e6be7d736eb7595b","Cargo.toml":"002ff7c091117de52e339a38db3e3ce6356caec3d693e6f427e02d129278b36b","Cargo.toml.orig":"4e21a017f5918f5c250abeed112a49fb17900f062f26786659c0295436fdb50e","LICENSE-APACHE":"aaff376532ea30a0cd5330b9502ad4a4c8bf769c539c87ffe78819d188a18ebf","LICENSE-MIT":"523a42c25d245dde9c015f882cec7f4555aad883382a6cf19b4b7d9b2cd5419b","README.md":"dc7c2f0442f08fd633b5ad1cce52f0c10d36cb92965f72bf22b3151525862753","SECURITY.md":"816ea79f8c7937888ab5a972a1efb270c4bada028b448953a195359fe11d526e","benches/buffer.rs":"c417c98f7fed41c2f97d3f3ee1a12cb2d311add0866207e8b96074e4b2665510","build.rs":"662faa06d7b2a9c5bea2c17a127a90e00b9f9b31105b0360da516e47cf816e95","src/backends.rs":"b918d1ccebc13d484129b05638346f5f3de489b357f12aca92f6070b94d0f1e7","src/backends/apple_other.rs":"f8fa784588f347cfd7c2b5f37a96b23d446f95c3157668069d7146e281fa783b","src/backends/custom.rs":"448b44a9800b3be95f91a85e35f1f313894bbd4e64e3751afaecf15b3f3532b3","src/backends/efi_rng.rs":"b22e505a5e85eadf1bc0bab8f7e96f226109a5cd3fb289dee06e7ed5a36ac1ef","src/backends/esp_idf.rs":"98d4997dcf7c0869883a617f8b5f341f9c97f4e21365c68de97db783215ae864","src/backends/extern_impl.rs":"0a13d8e059ee5203cf414101017a92d9f7289f86451a23d872c471b24279ece1","src/backends/fuchsia.rs":"4404823618bf1ac30f998a080cf46712596871de954fc0681cd8328b2e598e78","src/backends/getentropy.rs":"10f9486239aea0506eedcb13b553ed064addf27a902d8e19728a811a763dbcc7","src/backends/getrandom.rs":"da934695a424479f4eb80ba3a2aab97316f3bb6ed158523160eae1e3670e2b40","src/backends/hermit.rs":"f485c6431111c0867b1ebb76ce592a8502c4d88f07ea1a9c0650d235298518af","src/backends/linux_android_with_fallback.rs":"78a5c62a17d654cccb66bc0772c7017e57b0b6451e0d7135f834917456f343fb","src/backends/linux_raw.rs":"94f6a494edd6ab99eca1989294b1064b58ba502f401b642aedbc3b97e98c0bf7","src/backends/netbsd.rs":"a4fe488579d20976d4288a18d7059cc2d6cf662f55a95ab369e9866ef8ed8ce6","src/backends/rdrand.rs":"013c90b04f882ea82a73cc82b8d282227e2cfe9fe7d4f8eae9020a1b17aeb3b1","src/backends/rndr.rs":"edded389094deef0207fdf08acdf9c2e10d9ae8576cc64f7af21333cab0d0448","src/backends/solaris.rs":"8f3e51f90f56b64c4c1376cdd5399f1fcac5a19d3a88c7ec04f355c1b543bcaa","src/backends/solid.rs":"c89c809996aa656e2ef13b0753e7c7f742a047b9e72174806467d27946d88385","src/backends/unsupported.rs":"a531ab9883b7d7b584c6f37a5c13543ec63d25d3acc36608d57d5d82ef44cbff","src/backends/use_file.rs":"37dfc2ed2a454064196a2a268fc3bc90318ea1db11a9e24a77d53474c5001d70","src/backends/vxworks.rs":"2e10e1c1039e353353cf7bbeab8c9b2b33368ca28a0b1b1557e8a86e1b705471","src/backends/wasi_p1.rs":"5bf346a3f2e654243bddab1a323f7aa07dee2636d35308d5fac9038ac862bf17","src/backends/wasi_p2_3.rs":"f31b7dee49f2265ad71e4fd5aaaaefa9236a6a4cd950ccd9aa64d80d907d3b2f","src/backends/wasm_js.rs":"d4bedab6a161b545232f751565426ef9bcf604a154eaff49fbd5d68f8d0823f5","src/backends/windows.rs":"814c83c3142e521b5d1d1f03743585328ffe385373b6cdcca58ee11b693b3fb8","src/backends/windows_legacy.rs":"d4619333768daf09c1abf28b08a972a9c6c1e2e57dca9c153821e27feb62b9ed","src/error.rs":"529e5d8e3b119bc8f1cb1cde844c667a321d7f2cda764e5a1b7459d75c7050a3","src/error_std_impls.rs":"32a3469b0a1291f2182d9bd98b9bdb6232ed259b7747b3665cbe8c3124483957","src/lib.rs":"68bd1f2daa0aec1b55da25c07744869728a8be25d7c7d127bc788cd50fd8687b","src/sys_rng.rs":"ff110b2095252c34270d1c88b600e261eb4c2e96cb79b6e6512b41c37529d7eb","src/util.rs":"b1f6bb46c35e1bc71faed96aaaac82be99df636b2e6bdcd676e898a669dee37f","src/utils/get_errno.rs":"d5afe0e5e41a32a85105fb5242156fc1c15096fd0ebb20363cb3368a5e63c7b2","src/utils/lazy_bool.rs":"573d5575c859c816262f44875f36c6aa8c58ecd5b2b1cf484d2415a6a41957d7","src/utils/lazy_ptr.rs":"5c0c29f1d636f303f65be626c998f0ef7f3e3329d6be1696479af07e53370920","src/utils/sanitizer.rs":"f9db2840b940d620efef7c5b6ab3a25ba24c46a15fdb5aecb37a22ed249d4bad","src/utils/sys_fill_exact.rs":"d18e26399844e96b0a8e6ff0e82a9d7d3ee315e97e31eb51498430b201cb768c","tests/mod.rs":"661415759db1e22017b4a7be13e3141a750032c61a85a2721cd19fd5319e7a66","tests/sys_rng.rs":"25aab3742e8c927a2f15a668d5d0808d4fd54cf69c07be9ea794d5bf30f66466"},"package":"0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"}
|
|
@@ -4,11 +4,26 @@ All notable changes to this project will be documented in this file.
|
|
|
4
4
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
|
|
5
5
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
6
|
|
|
7
|
+
## [0.4.2] - 2026-03-03
|
|
8
|
+
|
|
9
|
+
### Changed
|
|
10
|
+
- Bump `r-efi` dependency to v6 [#814]
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
- Read `errno` only when it is set [#810]
|
|
14
|
+
- Check the return value of `ProcessPrng` on Windows [#811]
|
|
15
|
+
|
|
16
|
+
[0.4.2]: https://github.com/rust-random/getrandom/compare/v0.4.1...v0.4.2
|
|
17
|
+
[#810]: https://github.com/rust-random/getrandom/pull/810
|
|
18
|
+
[#811]: https://github.com/rust-random/getrandom/pull/811
|
|
19
|
+
[#814]: https://github.com/rust-random/getrandom/pull/814
|
|
20
|
+
|
|
7
21
|
## [0.4.1] - 2026-02-03
|
|
8
22
|
|
|
9
23
|
### Fixed
|
|
10
24
|
- Documentation build on docs.rs [#801]
|
|
11
25
|
|
|
26
|
+
[0.4.1]: https://github.com/rust-random/getrandom/compare/v0.4.0...v0.4.1
|
|
12
27
|
[#801]: https://github.com/rust-random/getrandom/pull/801
|
|
13
28
|
|
|
14
29
|
## [0.4.0] - 2026-02-02
|
|
@@ -23,12 +38,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
23
38
|
### Changed
|
|
24
39
|
- Use Edition 2024 and MSRV 1.85 [#749]
|
|
25
40
|
|
|
41
|
+
[0.4.0]: https://github.com/rust-random/getrandom/compare/v0.3.4...v0.4.0
|
|
26
42
|
[#739]: https://github.com/rust-random/getrandom/pull/739
|
|
27
43
|
[#749]: https://github.com/rust-random/getrandom/pull/749
|
|
28
44
|
[#751]: https://github.com/rust-random/getrandom/pull/751
|
|
29
45
|
[#779]: https://github.com/rust-random/getrandom/pull/779
|
|
30
46
|
[#786]: https://github.com/rust-random/getrandom/pull/786
|
|
31
47
|
[#794]: https://github.com/rust-random/getrandom/pull/794
|
|
48
|
+
[#797]: https://github.com/rust-random/getrandom/pull/797
|
|
32
49
|
|
|
33
50
|
## [0.3.4] - 2025-10-14
|
|
34
51
|
|
|
@@ -63,6 +80,7 @@ For more information, see the discussions in [#671], [#675], and [#730].
|
|
|
63
80
|
### Removed
|
|
64
81
|
- Unstable `rustc-dep-of-std` crate feature [#694]
|
|
65
82
|
|
|
83
|
+
[0.3.4]: https://github.com/rust-random/getrandom/compare/v0.3.3...v0.3.4
|
|
66
84
|
[#667]: https://github.com/rust-random/getrandom/pull/667
|
|
67
85
|
[#671]: https://github.com/rust-random/getrandom/issues/671
|
|
68
86
|
[#675]: https://github.com/rust-random/getrandom/pull/675
|
|
@@ -83,6 +101,7 @@ For more information, see the discussions in [#671], [#675], and [#730].
|
|
|
83
101
|
### Fixed
|
|
84
102
|
- Error handling in WASI p1 [#661]
|
|
85
103
|
|
|
104
|
+
[0.3.3]: https://github.com/rust-random/getrandom/compare/v0.3.2...v0.3.3
|
|
86
105
|
[#632]: https://github.com/rust-random/getrandom/pull/632
|
|
87
106
|
[#634]: https://github.com/rust-random/getrandom/pull/634
|
|
88
107
|
[#635]: https://github.com/rust-random/getrandom/pull/635
|
|
@@ -113,6 +132,7 @@ For more information, see the discussions in [#671], [#675], and [#730].
|
|
|
113
132
|
### Removed
|
|
114
133
|
- `Error::INTERNAL_START` and `Error::CUSTOM_START` associated constants [#614]
|
|
115
134
|
|
|
135
|
+
[0.3.2]: https://github.com/rust-random/getrandom/compare/v0.3.1...v0.3.2
|
|
116
136
|
[#570]: https://github.com/rust-random/getrandom/pull/570
|
|
117
137
|
[#572]: https://github.com/rust-random/getrandom/pull/572
|
|
118
138
|
[#591]: https://github.com/rust-random/getrandom/pull/591
|
|
@@ -134,6 +154,7 @@ For more information, see the discussions in [#671], [#675], and [#730].
|
|
|
134
154
|
### Fixed
|
|
135
155
|
- Build error on Android [#588]
|
|
136
156
|
|
|
157
|
+
[0.3.1]: https://github.com/rust-random/getrandom/compare/v0.3.0...v0.3.1
|
|
137
158
|
[#588]: https://github.com/rust-random/getrandom/pull/588
|
|
138
159
|
|
|
139
160
|
## [0.3.0] - 2025-01-25
|
|
@@ -178,6 +199,7 @@ For more information, see the discussions in [#671], [#675], and [#730].
|
|
|
178
199
|
### Fixed
|
|
179
200
|
- NetBSD fallback code based on `KERN_ARND` [#555]
|
|
180
201
|
|
|
202
|
+
[0.3.0]: https://github.com/rust-random/getrandom/compare/v0.2.15...v0.3.0
|
|
181
203
|
[#415]: https://github.com/rust-random/getrandom/pull/415
|
|
182
204
|
[#440]: https://github.com/rust-random/getrandom/pull/440
|
|
183
205
|
[#442]: https://github.com/rust-random/getrandom/pull/442
|
|
@@ -206,6 +228,7 @@ For more information, see the discussions in [#671], [#675], and [#730].
|
|
|
206
228
|
- Use `doc_cfg` instead of `doc_auto_cfg` (partial backport of [#732]) [#768]
|
|
207
229
|
- `BCryptGenRandom` signature [#778]
|
|
208
230
|
|
|
231
|
+
[0.2.17]: https://github.com/rust-random/getrandom/compare/v0.2.16...v0.2.17
|
|
209
232
|
[#732]: https://github.com/rust-random/getrandom/pull/732
|
|
210
233
|
[#768]: https://github.com/rust-random/getrandom/pull/768
|
|
211
234
|
[#778]: https://github.com/rust-random/getrandom/pull/778
|
|
@@ -214,6 +237,7 @@ For more information, see the discussions in [#671], [#675], and [#730].
|
|
|
214
237
|
### Added
|
|
215
238
|
- Cygwin support (backport of [#626]) [#654]
|
|
216
239
|
|
|
240
|
+
[0.2.16]: https://github.com/rust-random/getrandom/compare/v0.2.15...v0.2.16
|
|
217
241
|
[#654]: https://github.com/rust-random/getrandom/pull/654
|
|
218
242
|
|
|
219
243
|
## [0.2.15] - 2024-05-06
|
|
@@ -224,6 +248,7 @@ For more information, see the discussions in [#671], [#675], and [#730].
|
|
|
224
248
|
- Use `libc::getrandom` on DragonflyBSD, FreeBSD, illumos, and Solaris [#411] [#416] [#417] [#420]
|
|
225
249
|
- Unify `libc::getentropy`-based implementations [#418]
|
|
226
250
|
|
|
251
|
+
[0.2.15]: https://github.com/rust-random/getrandom/compare/v0.2.14...v0.2.15
|
|
227
252
|
[#410]: https://github.com/rust-random/getrandom/pull/410
|
|
228
253
|
[#411]: https://github.com/rust-random/getrandom/pull/411
|
|
229
254
|
[#416]: https://github.com/rust-random/getrandom/pull/416
|
|
@@ -235,6 +260,7 @@ For more information, see the discussions in [#671], [#675], and [#730].
|
|
|
235
260
|
### Fixed
|
|
236
261
|
- Enable `/dev/urandom` fallback for MUSL-based Linux targets [#408]
|
|
237
262
|
|
|
263
|
+
[0.2.14]: https://github.com/rust-random/getrandom/compare/v0.2.13...v0.2.14
|
|
238
264
|
[#408]: https://github.com/rust-random/getrandom/pull/408
|
|
239
265
|
|
|
240
266
|
## [0.2.13] - 2024-04-06
|
|
@@ -249,6 +275,7 @@ For more information, see the discussions in [#671], [#675], and [#730].
|
|
|
249
275
|
- Do not catch `EPERM` error code on Android while checking availability of
|
|
250
276
|
the `getrandom` syscall [#396]
|
|
251
277
|
|
|
278
|
+
[0.2.13]: https://github.com/rust-random/getrandom/compare/v0.2.12...v0.2.13
|
|
252
279
|
[#396]: https://github.com/rust-random/getrandom/pull/396
|
|
253
280
|
|
|
254
281
|
## [0.2.12] - 2024-01-09
|
|
@@ -262,6 +289,7 @@ For more information, see the discussions in [#671], [#675], and [#730].
|
|
|
262
289
|
### Added
|
|
263
290
|
- Document platform support policy [#387]
|
|
264
291
|
|
|
292
|
+
[0.2.12]: https://github.com/rust-random/getrandom/compare/v0.2.11...v0.2.12
|
|
265
293
|
[#385]: https://github.com/rust-random/getrandom/pull/385
|
|
266
294
|
[#386]: https://github.com/rust-random/getrandom/pull/386
|
|
267
295
|
[#387]: https://github.com/rust-random/getrandom/pull/387
|
|
@@ -275,6 +303,7 @@ For more information, see the discussions in [#671], [#675], and [#730].
|
|
|
275
303
|
- Renamed `__getrandom_internal` to `__GETRANDOM_INTERNAL` [#369]
|
|
276
304
|
- Updated link to Hermit docs [#374]
|
|
277
305
|
|
|
306
|
+
[0.2.11]: https://github.com/rust-random/getrandom/compare/v0.2.10...v0.2.11
|
|
278
307
|
[#369]: https://github.com/rust-random/getrandom/pull/369
|
|
279
308
|
[#370]: https://github.com/rust-random/getrandom/pull/370
|
|
280
309
|
[#374]: https://github.com/rust-random/getrandom/pull/374
|
|
@@ -286,6 +315,7 @@ For more information, see the discussions in [#671], [#675], and [#730].
|
|
|
286
315
|
### Changed
|
|
287
316
|
- Use getentropy from libc on Emscripten targets [#362]
|
|
288
317
|
|
|
318
|
+
[0.2.10]: https://github.com/rust-random/getrandom/compare/v0.2.9...v0.2.10
|
|
289
319
|
[#359]: https://github.com/rust-random/getrandom/pull/359
|
|
290
320
|
[#362]: https://github.com/rust-random/getrandom/pull/362
|
|
291
321
|
|
|
@@ -319,6 +349,7 @@ For more information, see the discussions in [#671], [#675], and [#730].
|
|
|
319
349
|
- Move `__getrandom_custom` definition into a const block [#344]
|
|
320
350
|
- Switch the custom backend to Rust ABI [#347]
|
|
321
351
|
|
|
352
|
+
[0.2.9]: https://github.com/rust-random/getrandom/compare/v0.2.8...v0.2.9
|
|
322
353
|
[#282]: https://github.com/rust-random/getrandom/pull/282
|
|
323
354
|
[#291]: https://github.com/rust-random/getrandom/pull/291
|
|
324
355
|
[#301]: https://github.com/rust-random/getrandom/pull/301
|
|
@@ -355,7 +386,7 @@ For more information, see the discussions in [#671], [#675], and [#730].
|
|
|
355
386
|
- Fix link to `wasm-bindgen` [#278]
|
|
356
387
|
- Document the varied implementations for underlying randomness sources [#276]
|
|
357
388
|
|
|
358
|
-
[
|
|
389
|
+
[0.2.8]: https://github.com/rust-random/getrandom/compare/v0.2.7...v0.2.8
|
|
359
390
|
[#284]: https://github.com/rust-random/getrandom/pull/284
|
|
360
391
|
[#295]: https://github.com/rust-random/getrandom/pull/295
|
|
361
392
|
[#272]: https://github.com/rust-random/getrandom/pull/272
|
|
@@ -363,6 +394,7 @@ For more information, see the discussions in [#671], [#675], and [#730].
|
|
|
363
394
|
[#280]: https://github.com/rust-random/getrandom/pull/280
|
|
364
395
|
[#278]: https://github.com/rust-random/getrandom/pull/278
|
|
365
396
|
[#276]: https://github.com/rust-random/getrandom/pull/276
|
|
397
|
+
[Web Cryptography API]: https://developer.mozilla.org/en-US/docs/Web/API/Web_Crypto_API
|
|
366
398
|
|
|
367
399
|
## [0.2.7] - 2022-06-14
|
|
368
400
|
### Changed
|
|
@@ -374,6 +406,7 @@ For more information, see the discussions in [#671], [#675], and [#730].
|
|
|
374
406
|
### Documentation
|
|
375
407
|
- Add comments explaining use of fallback mechanisms [#257] [#260]
|
|
376
408
|
|
|
409
|
+
[0.2.7]: https://github.com/rust-random/getrandom/compare/v0.2.6...v0.2.7
|
|
377
410
|
[#263]: https://github.com/rust-random/getrandom/pull/263
|
|
378
411
|
[#260]: https://github.com/rust-random/getrandom/pull/260
|
|
379
412
|
[#253]: https://github.com/rust-random/getrandom/pull/253
|
|
@@ -386,6 +419,7 @@ For more information, see the discussions in [#671], [#675], and [#730].
|
|
|
386
419
|
### Changed
|
|
387
420
|
- Retry `open` when interrupted [#252]
|
|
388
421
|
|
|
422
|
+
[0.2.6]: https://github.com/rust-random/getrandom/compare/v0.2.5...v0.2.6
|
|
389
423
|
[#248]: https://github.com/rust-random/getrandom/pull/248
|
|
390
424
|
[#252]: https://github.com/rust-random/getrandom/pull/252
|
|
391
425
|
|
|
@@ -397,6 +431,7 @@ For more information, see the discussions in [#671], [#675], and [#730].
|
|
|
397
431
|
- Webpack warning caused by dynamic require [#234]
|
|
398
432
|
- Error checking on iOS for `SecRandomCopyBytes` [#244]
|
|
399
433
|
|
|
434
|
+
[0.2.5]: https://github.com/rust-random/getrandom/compare/v0.2.4...v0.2.5
|
|
400
435
|
[#234]: https://github.com/rust-random/getrandom/pull/234
|
|
401
436
|
[#244]: https://github.com/rust-random/getrandom/pull/244
|
|
402
437
|
[#245]: https://github.com/rust-random/getrandom/pull/245
|
|
@@ -411,6 +446,7 @@ For more information, see the discussions in [#671], [#675], and [#730].
|
|
|
411
446
|
- SOLID targets (`*-kmc-solid_*`) support [#235]
|
|
412
447
|
- Limited Hermit (`x86_64-unknown-hermit`) support [#236]
|
|
413
448
|
|
|
449
|
+
[0.2.4]: https://github.com/rust-random/getrandom/compare/v0.2.3...v0.2.4
|
|
414
450
|
[#220]: https://github.com/rust-random/getrandom/pull/220
|
|
415
451
|
[#222]: https://github.com/rust-random/getrandom/pull/222
|
|
416
452
|
[#233]: https://github.com/rust-random/getrandom/pull/233
|
|
@@ -423,6 +459,7 @@ For more information, see the discussions in [#671], [#675], and [#730].
|
|
|
423
459
|
- Add support for getrandom syscall on DragonFly BSD. [#210]
|
|
424
460
|
- Improve Node.js detection. [#215]
|
|
425
461
|
|
|
462
|
+
[0.2.3]: https://github.com/rust-random/getrandom/compare/v0.2.2...v0.2.3
|
|
426
463
|
[#205]: https://github.com/rust-random/getrandom/pull/205
|
|
427
464
|
[#210]: https://github.com/rust-random/getrandom/pull/210
|
|
428
465
|
[#215]: https://github.com/rust-random/getrandom/pull/215
|
|
@@ -432,6 +469,7 @@ For more information, see the discussions in [#671], [#675], and [#730].
|
|
|
432
469
|
- Forward `rustc-dep-of-std` to dependencies. [#198]
|
|
433
470
|
- Highlight feature-dependent functionality in documentation using the `doc_cfg` feature. [#200]
|
|
434
471
|
|
|
472
|
+
[0.2.2]: https://github.com/rust-random/getrandom/compare/v0.2.1...v0.2.2
|
|
435
473
|
[#198]: https://github.com/rust-random/getrandom/pull/198
|
|
436
474
|
[#200]: https://github.com/rust-random/getrandom/pull/200
|
|
437
475
|
|
|
@@ -448,6 +486,7 @@ For more information, see the discussions in [#671], [#675], and [#730].
|
|
|
448
486
|
- Direct `stdweb` support. [#178]
|
|
449
487
|
- CloudABI support. [#184]
|
|
450
488
|
|
|
489
|
+
[0.2.1]: https://github.com/rust-random/getrandom/compare/v0.2.0...v0.2.1
|
|
451
490
|
[#165]: https://github.com/rust-random/getrandom/pull/165
|
|
452
491
|
[#166]: https://github.com/rust-random/getrandom/pull/166
|
|
453
492
|
[#167]: https://github.com/rust-random/getrandom/pull/167
|
|
@@ -473,6 +512,7 @@ The following (off by default) Cargo features have been added:
|
|
|
473
512
|
- Update minimum supported Linux kernel to 2.6.32 [#153]
|
|
474
513
|
- Update MSRV to 1.34 [#159]
|
|
475
514
|
|
|
515
|
+
[0.2.0]: https://github.com/rust-random/getrandom/compare/v0.1.16...v0.2.0
|
|
476
516
|
[#106]: https://github.com/rust-random/getrandom/pull/106
|
|
477
517
|
[#107]: https://github.com/rust-random/getrandom/pull/107
|
|
478
518
|
[#109]: https://github.com/rust-random/getrandom/pull/109
|
|
@@ -491,6 +531,7 @@ The following (off by default) Cargo features have been added:
|
|
|
491
531
|
### Fixed
|
|
492
532
|
- Multithreaded WASM support. [#171]
|
|
493
533
|
|
|
534
|
+
[0.1.16]: https://github.com/rust-random/getrandom/compare/v0.1.15...v0.1.16
|
|
494
535
|
[#173]: https://github.com/rust-random/getrandom/pull/173
|
|
495
536
|
[#171]: https://github.com/rust-random/getrandom/pull/171
|
|
496
537
|
[#169]: https://github.com/rust-random/getrandom/pull/169
|
|
@@ -500,6 +541,7 @@ The following (off by default) Cargo features have been added:
|
|
|
500
541
|
- Added support for Internet Explorer 11 [#139]
|
|
501
542
|
- Fix Webpack require warning with `wasm-bindgen` [#137]
|
|
502
543
|
|
|
544
|
+
[0.1.15]: https://github.com/rust-random/getrandom/compare/v0.1.14...v0.1.15
|
|
503
545
|
[#137]: https://github.com/rust-random/getrandom/pull/137
|
|
504
546
|
[#139]: https://github.com/rust-random/getrandom/pull/139
|
|
505
547
|
|
|
@@ -509,6 +551,7 @@ The following (off by default) Cargo features have been added:
|
|
|
509
551
|
- Update `wasi` to v0.9. [#126]
|
|
510
552
|
- Do not read errno value on DragonFlyBSD to fix compilation failure. [#129]
|
|
511
553
|
|
|
554
|
+
[0.1.14]: https://github.com/rust-random/getrandom/compare/v0.1.13...v0.1.14
|
|
512
555
|
[#125]: https://github.com/rust-random/getrandom/pull/125
|
|
513
556
|
[#126]: https://github.com/rust-random/getrandom/pull/126
|
|
514
557
|
[#129]: https://github.com/rust-random/getrandom/pull/129
|
|
@@ -527,6 +570,7 @@ system. [#104]
|
|
|
527
570
|
- Bump `cfg-if` minimum version from 0.1.0 to 0.1.2. [#112]
|
|
528
571
|
- Typos and bad doc links. [#117]
|
|
529
572
|
|
|
573
|
+
[0.1.13]: https://github.com/rust-random/getrandom/compare/v0.1.12...v0.1.13
|
|
530
574
|
[#86]: https://github.com/rust-random/getrandom/pull/86
|
|
531
575
|
[#104]: https://github.com/rust-random/getrandom/pull/104
|
|
532
576
|
[#112]: https://github.com/rust-random/getrandom/pull/112
|
|
@@ -537,6 +581,7 @@ system. [#104]
|
|
|
537
581
|
### Changed
|
|
538
582
|
- Update wasi dependency from v0.5 to v0.7. [#100]
|
|
539
583
|
|
|
584
|
+
[0.1.12]: https://github.com/rust-random/getrandom/compare/v0.1.11...v0.1.12
|
|
540
585
|
[#100]: https://github.com/rust-random/getrandom/pull/100
|
|
541
586
|
|
|
542
587
|
## [0.1.11] - 2019-08-25
|
|
@@ -544,6 +589,7 @@ system. [#104]
|
|
|
544
589
|
- Implement `std`-dependent traits for selected targets even if `std`
|
|
545
590
|
feature is disabled. (backward compatibility with v0.1.8) [#96]
|
|
546
591
|
|
|
592
|
+
[0.1.11]: https://github.com/rust-random/getrandom/compare/v0.1.10...v0.1.11
|
|
547
593
|
[#96]: https://github.com/rust-random/getrandom/pull/96
|
|
548
594
|
|
|
549
595
|
## [0.1.10] - 2019-08-18 [YANKED]
|
|
@@ -554,6 +600,7 @@ disabled `dummy` feature. [#90]
|
|
|
554
600
|
### Fixed
|
|
555
601
|
- Fix CSP error for `wasm-bindgen`. [#92]
|
|
556
602
|
|
|
603
|
+
[0.1.10]: https://github.com/rust-random/getrandom/compare/v0.1.9...v0.1.10
|
|
557
604
|
[#90]: https://github.com/rust-random/getrandom/pull/90
|
|
558
605
|
[#92]: https://github.com/rust-random/getrandom/pull/92
|
|
559
606
|
|
|
@@ -568,6 +615,7 @@ This behaviour can be disabled by using the `dummy` feature. [#71]
|
|
|
568
615
|
- Add support for UWP targets. [#69]
|
|
569
616
|
- Add unstable `rustc-dep-of-std` feature. [#78]
|
|
570
617
|
|
|
618
|
+
[0.1.9]: https://github.com/rust-random/getrandom/compare/v0.1.8...v0.1.9
|
|
571
619
|
[#58]: https://github.com/rust-random/getrandom/pull/58
|
|
572
620
|
[#64]: https://github.com/rust-random/getrandom/pull/64
|
|
573
621
|
[#69]: https://github.com/rust-random/getrandom/pull/69
|
|
@@ -578,6 +626,7 @@ This behaviour can be disabled by using the `dummy` feature. [#71]
|
|
|
578
626
|
### Changed
|
|
579
627
|
- Explicitly specify types to arguments of 'libc::syscall'. [#74]
|
|
580
628
|
|
|
629
|
+
[0.1.8]: https://github.com/rust-random/getrandom/compare/v0.1.7...v0.1.8
|
|
581
630
|
[#74]: https://github.com/rust-random/getrandom/pull/74
|
|
582
631
|
|
|
583
632
|
## [0.1.7] - 2019-07-29
|
|
@@ -597,6 +646,7 @@ initialization. [#51] [#52]
|
|
|
597
646
|
### Deprecated
|
|
598
647
|
- `Error::UNKNOWN`, `Error::UNAVAILABLE`. [#54]
|
|
599
648
|
|
|
649
|
+
[0.1.7]: https://github.com/rust-random/getrandom/compare/v0.1.6...v0.1.7
|
|
600
650
|
[#51]: https://github.com/rust-random/getrandom/pull/51
|
|
601
651
|
[#52]: https://github.com/rust-random/getrandom/pull/52
|
|
602
652
|
[#54]: https://github.com/rust-random/getrandom/pull/54
|
|
@@ -608,6 +658,7 @@ initialization. [#51] [#52]
|
|
|
608
658
|
### Changed
|
|
609
659
|
- Minor change of RDRAND AMD bug handling. [#48]
|
|
610
660
|
|
|
661
|
+
[0.1.6]: https://github.com/rust-random/getrandom/compare/v0.1.5...v0.1.6
|
|
611
662
|
[#48]: https://github.com/rust-random/getrandom/pull/48
|
|
612
663
|
|
|
613
664
|
## [0.1.5] - 2019-06-29
|
|
@@ -618,6 +669,7 @@ initialization. [#51] [#52]
|
|
|
618
669
|
### Changed
|
|
619
670
|
- Try `getentropy` and then fallback to `/dev/random` on macOS. [#38]
|
|
620
671
|
|
|
672
|
+
[0.1.5]: https://github.com/rust-random/getrandom/compare/v0.1.4...v0.1.5
|
|
621
673
|
[#38]: https://github.com/rust-random/getrandom/issues/38
|
|
622
674
|
[#43]: https://github.com/rust-random/getrandom/pull/43
|
|
623
675
|
[#44]: https://github.com/rust-random/getrandom/issues/44
|
|
@@ -639,6 +691,7 @@ feature detection. [#30]
|
|
|
639
691
|
- Increase consistency with libc implementation on FreeBSD. [#36]
|
|
640
692
|
- Apply `rustfmt`. [#39]
|
|
641
693
|
|
|
694
|
+
[0.1.4]: https://github.com/rust-random/getrandom/compare/v0.1.3...v0.1.4
|
|
642
695
|
[#30]: https://github.com/rust-random/getrandom/pull/30
|
|
643
696
|
[#13]: https://github.com/rust-random/getrandom/issues/13
|
|
644
697
|
[#40]: https://github.com/rust-random/getrandom/pull/40
|
|
@@ -654,58 +707,24 @@ feature detection. [#30]
|
|
|
654
707
|
- Update for `wasm32-unknown-wasi` being renamed to `wasm32-wasi`, and for
|
|
655
708
|
WASI being categorized as an OS.
|
|
656
709
|
|
|
710
|
+
[0.1.3]: https://github.com/rust-random/getrandom/compare/v0.1.2...v0.1.3
|
|
711
|
+
|
|
657
712
|
## [0.1.2] - 2019-04-06
|
|
658
713
|
- Add support for `wasm32-unknown-wasi` target.
|
|
659
714
|
|
|
715
|
+
[0.1.2]: https://github.com/rust-random/getrandom/compare/v0.1.1...v0.1.2
|
|
716
|
+
|
|
660
717
|
## [0.1.1] - 2019-04-05
|
|
661
718
|
- Enable std functionality for CloudABI by default.
|
|
662
719
|
|
|
720
|
+
[0.1.1]: https://github.com/rust-random/getrandom/compare/v0.1.0...v0.1.1
|
|
721
|
+
|
|
663
722
|
## [0.1.0] - 2019-03-23
|
|
664
723
|
Publish initial implementation.
|
|
665
724
|
|
|
725
|
+
[0.1.0]: https://github.com/rust-random/getrandom/compare/v0.0.0...v0.1.0
|
|
726
|
+
|
|
666
727
|
## [0.0.0] - 2019-01-19
|
|
667
728
|
Publish an empty template library.
|
|
668
729
|
|
|
669
|
-
[0.4.1]: https://github.com/rust-random/getrandom/compare/v0.4.0...v0.4.1
|
|
670
|
-
[0.4.0]: https://github.com/rust-random/getrandom/compare/v0.3.4...v0.4.0
|
|
671
|
-
[0.3.4]: https://github.com/rust-random/getrandom/compare/v0.3.3...v0.3.4
|
|
672
|
-
[0.3.3]: https://github.com/rust-random/getrandom/compare/v0.3.2...v0.3.3
|
|
673
|
-
[0.3.2]: https://github.com/rust-random/getrandom/compare/v0.3.1...v0.3.2
|
|
674
|
-
[0.3.1]: https://github.com/rust-random/getrandom/compare/v0.3.0...v0.3.1
|
|
675
|
-
[0.3.0]: https://github.com/rust-random/getrandom/compare/v0.2.15...v0.3.0
|
|
676
|
-
[0.2.17]: https://github.com/rust-random/getrandom/compare/v0.2.16...v0.2.17
|
|
677
|
-
[0.2.16]: https://github.com/rust-random/getrandom/compare/v0.2.15...v0.2.16
|
|
678
|
-
[0.2.15]: https://github.com/rust-random/getrandom/compare/v0.2.14...v0.2.15
|
|
679
|
-
[0.2.14]: https://github.com/rust-random/getrandom/compare/v0.2.13...v0.2.14
|
|
680
|
-
[0.2.13]: https://github.com/rust-random/getrandom/compare/v0.2.12...v0.2.13
|
|
681
|
-
[0.2.12]: https://github.com/rust-random/getrandom/compare/v0.2.11...v0.2.12
|
|
682
|
-
[0.2.11]: https://github.com/rust-random/getrandom/compare/v0.2.10...v0.2.11
|
|
683
|
-
[0.2.10]: https://github.com/rust-random/getrandom/compare/v0.2.9...v0.2.10
|
|
684
|
-
[0.2.9]: https://github.com/rust-random/getrandom/compare/v0.2.8...v0.2.9
|
|
685
|
-
[0.2.8]: https://github.com/rust-random/getrandom/compare/v0.2.7...v0.2.8
|
|
686
|
-
[0.2.7]: https://github.com/rust-random/getrandom/compare/v0.2.6...v0.2.7
|
|
687
|
-
[0.2.6]: https://github.com/rust-random/getrandom/compare/v0.2.5...v0.2.6
|
|
688
|
-
[0.2.5]: https://github.com/rust-random/getrandom/compare/v0.2.4...v0.2.5
|
|
689
|
-
[0.2.4]: https://github.com/rust-random/getrandom/compare/v0.2.3...v0.2.4
|
|
690
|
-
[0.2.3]: https://github.com/rust-random/getrandom/compare/v0.2.2...v0.2.3
|
|
691
|
-
[0.2.2]: https://github.com/rust-random/getrandom/compare/v0.2.1...v0.2.2
|
|
692
|
-
[0.2.1]: https://github.com/rust-random/getrandom/compare/v0.2.0...v0.2.1
|
|
693
|
-
[0.2.0]: https://github.com/rust-random/getrandom/compare/v0.1.16...v0.2.0
|
|
694
|
-
[0.1.16]: https://github.com/rust-random/getrandom/compare/v0.1.15...v0.1.16
|
|
695
|
-
[0.1.15]: https://github.com/rust-random/getrandom/compare/v0.1.14...v0.1.15
|
|
696
|
-
[0.1.14]: https://github.com/rust-random/getrandom/compare/v0.1.13...v0.1.14
|
|
697
|
-
[0.1.13]: https://github.com/rust-random/getrandom/compare/v0.1.12...v0.1.13
|
|
698
|
-
[0.1.12]: https://github.com/rust-random/getrandom/compare/v0.1.11...v0.1.12
|
|
699
|
-
[0.1.11]: https://github.com/rust-random/getrandom/compare/v0.1.10...v0.1.11
|
|
700
|
-
[0.1.10]: https://github.com/rust-random/getrandom/compare/v0.1.9...v0.1.10
|
|
701
|
-
[0.1.9]: https://github.com/rust-random/getrandom/compare/v0.1.8...v0.1.9
|
|
702
|
-
[0.1.8]: https://github.com/rust-random/getrandom/compare/v0.1.7...v0.1.8
|
|
703
|
-
[0.1.7]: https://github.com/rust-random/getrandom/compare/v0.1.6...v0.1.7
|
|
704
|
-
[0.1.6]: https://github.com/rust-random/getrandom/compare/v0.1.5...v0.1.6
|
|
705
|
-
[0.1.5]: https://github.com/rust-random/getrandom/compare/v0.1.4...v0.1.5
|
|
706
|
-
[0.1.4]: https://github.com/rust-random/getrandom/compare/v0.1.3...v0.1.4
|
|
707
|
-
[0.1.3]: https://github.com/rust-random/getrandom/compare/v0.1.2...v0.1.3
|
|
708
|
-
[0.1.2]: https://github.com/rust-random/getrandom/compare/v0.1.1...v0.1.2
|
|
709
|
-
[0.1.1]: https://github.com/rust-random/getrandom/compare/v0.1.0...v0.1.1
|
|
710
|
-
[0.1.0]: https://github.com/rust-random/getrandom/compare/v0.0.0...v0.1.0
|
|
711
730
|
[0.0.0]: https://github.com/rust-random/getrandom/releases/tag/v0.0.0
|