Added support for auto-creating log directory #8
development.yml
on: push
Annotations
1 error and 4 warnings
Check | Audit
Error: Critical vulnerabilities were found, marking check as failed
|
large size difference between variants:
src/internal.rs#L41
warning: large size difference between variants
--> src/internal.rs:41:1
|
41 | / enum Command {
42 | | Flush,
| | ----- the second-largest variant carries no data at all
43 | | Log(LogMsg),
| | ----------- the largest variant contains at least 1024 bytes
44 | | Terminate,
45 | | EnableLogBuffer,
46 | | DisableLogBuffer,
47 | | }
| |_^ the entire enum is at least 1028 bytes
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#large_enum_variant
= note: `#[warn(clippy::large_enum_variant)]` on by default
help: consider boxing the large fields to reduce the total size of the enum
|
43 | Log(Box<LogMsg>),
| ~~~~~~~~~~~
|
Check | Audit
1 vulnerabilities found!
|
Check | Audit
1 warnings found!
|
Check | Audit
Unknown warning kind unsound found, please, file a bug
|