Skip to content

Update README.md (#9) #11

Update README.md (#9)

Update README.md (#9) #11

Triggered via push July 8, 2024 09:34
Status Success
Total duration 27s
Artifacts

doc.yml

on: push
doc-build-and-deploy
18s
doc-build-and-deploy
Fit to window
Zoom out
Zoom in

Annotations

3 errors and 2 warnings
transmute used without annotations: src/udp.rs#L66
error: transmute used without annotations --> src/udp.rs:66:31 | 66 | unsafe { mem::transmute(sockaddr_in6) } | ^^^^^^^^^ help: consider adding missing annotations: `transmute::<std::boxed::Box<libc::sockaddr_in6>, std::boxed::Box<libc::sockaddr>>` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#missing_transmute_annotations
transmute used without annotations: src/udp.rs#L54
error: transmute used without annotations --> src/udp.rs:54:31 | 54 | unsafe { mem::transmute(sockaddr_in) } | ^^^^^^^^^ help: consider adding missing annotations: `transmute::<std::boxed::Box<libc::sockaddr_in>, std::boxed::Box<libc::sockaddr>>` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#missing_transmute_annotations = note: `-D clippy::missing-transmute-annotations` implied by `-D warnings` = help: to override `-D warnings` add `#[allow(clippy::missing_transmute_annotations)]`
file opened with `create`, but `truncate` behavior not defined: src/file/receive.rs#L117
error: file opened with `create`, but `truncate` behavior not defined --> src/file/receive.rs:117:10 | 117 | .create(true) | ^^^^^^^^^^^^- help: add: `.truncate(true)` | = help: if you intend to overwrite an existing file entirely, call `.truncate(true)` = help: if you instead know that you may want to keep some parts of the old file, call `.truncate(false)` = help: alternatively, use `.append(true)` to append to the file instead of overwriting it = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#suspicious_open_options = note: `-D clippy::suspicious-open-options` implied by `-D warnings` = help: to override `-D warnings` add `#[allow(clippy::suspicious_open_options)]`
doc-build-and-deploy
The following actions uses Node.js version which is deprecated and will be forced to run on node20: actions/checkout@v3, actions/setup-python@v4. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
doc-build-and-deploy
The `python-version` input is not set. The version of Python currently in `PATH` will be used.