Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

mbuffer from big float with gob encode vm hook impl + tests #1444

Draft
wants to merge 3 commits into
base: master
Choose a base branch
from

Merge branch 'master' into big-float-to-managed-buffer

5e8b82b
Select commit
Loading
Failed to load commit list.
Sign in for the full log view
Draft

mbuffer from big float with gob encode vm hook impl + tests #1444

Merge branch 'master' into big-float-to-managed-buffer
5e8b82b
Select commit
Loading
Failed to load commit list.
GitHub Actions / clippy failed Mar 22, 2024 in 0s

reviewdog [clippy] report

reported by reviewdog 🐶

Findings (5)

vm/src/vm_hooks/vh_handler/vh_managed_types.rs|6 col 24| error[E0432]: unresolved import gob::Buf
--> vm/src/vm_hooks/vh_handler/vh_managed_types.rs:6:24
|
6 | use gob::{ser::TypeId, Buf, StreamDeserializer, StreamSerializer};
| ^^^ no Buf in the root
vm/src/vm_hooks/vh_handler/vh_managed_types.rs|6 col 11| warning: unused imports: StreamDeserializer, StreamSerializer, ser::TypeId
--> vm/src/vm_hooks/vh_handler/vh_managed_types.rs:6:11
|
6 | use gob::{ser::TypeId, Buf, StreamDeserializer, StreamSerializer};
| ^^^^^^^^^^^ ^^^^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^^
|
= note: #[warn(unused_imports)] on by default
vm/src/vm_hooks/vh_handler/vh_managed_types.rs|7 col 18| warning: unused imports: Signed, float
--> vm/src/vm_hooks/vh_handler/vh_managed_types.rs:7:18
|
7 | use num_traits::{float, Signed, ToBytes};
| ^^^^^ ^^^^^^
vm/src/vm_hooks/vh_handler/vh_managed_types.rs|8 col 5| warning: unused import: serde::ser::Serializer
--> vm/src/vm_hooks/vh_handler/vh_managed_types.rs:8:5
|
8 | use serde::ser::Serializer;
| ^^^^^^^^^^^^^^^^^^^^^^
vm/src/vm_hooks/vh_handler/vh_managed_types.rs|7 col 33| warning: unused import: ToBytes
--> vm/src/vm_hooks/vh_handler/vh_managed_types.rs:7:33
|
7 | use num_traits::{float, Signed, ToBytes};
| ^^^^^^^

Filtered Findings (0)

Annotations

Check failure on line 6 in vm/src/vm_hooks/vh_handler/vh_managed_types.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

[clippy] vm/src/vm_hooks/vh_handler/vh_managed_types.rs#L6

error[E0432]: unresolved import `gob::Buf`
 --> vm/src/vm_hooks/vh_handler/vh_managed_types.rs:6:24
  |
6 | use gob::{ser::TypeId, Buf, StreamDeserializer, StreamSerializer};
  |                        ^^^ no `Buf` in the root
Raw output
vm/src/vm_hooks/vh_handler/vh_managed_types.rs:6:24:e:error[E0432]: unresolved import `gob::Buf`
 --> vm/src/vm_hooks/vh_handler/vh_managed_types.rs:6:24
  |
6 | use gob::{ser::TypeId, Buf, StreamDeserializer, StreamSerializer};
  |                        ^^^ no `Buf` in the root


__END__

Check warning on line 6 in vm/src/vm_hooks/vh_handler/vh_managed_types.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

[clippy] vm/src/vm_hooks/vh_handler/vh_managed_types.rs#L6

warning: unused imports: `StreamDeserializer`, `StreamSerializer`, `ser::TypeId`
 --> vm/src/vm_hooks/vh_handler/vh_managed_types.rs:6:11
  |
6 | use gob::{ser::TypeId, Buf, StreamDeserializer, StreamSerializer};
  |           ^^^^^^^^^^^       ^^^^^^^^^^^^^^^^^^  ^^^^^^^^^^^^^^^^
  |
  = note: `#[warn(unused_imports)]` on by default
Raw output
vm/src/vm_hooks/vh_handler/vh_managed_types.rs:6:11:w:warning: unused imports: `StreamDeserializer`, `StreamSerializer`, `ser::TypeId`
 --> vm/src/vm_hooks/vh_handler/vh_managed_types.rs:6:11
  |
6 | use gob::{ser::TypeId, Buf, StreamDeserializer, StreamSerializer};
  |           ^^^^^^^^^^^       ^^^^^^^^^^^^^^^^^^  ^^^^^^^^^^^^^^^^
  |
  = note: `#[warn(unused_imports)]` on by default


__END__

Check warning on line 7 in vm/src/vm_hooks/vh_handler/vh_managed_types.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

[clippy] vm/src/vm_hooks/vh_handler/vh_managed_types.rs#L7

warning: unused imports: `Signed`, `float`
 --> vm/src/vm_hooks/vh_handler/vh_managed_types.rs:7:18
  |
7 | use num_traits::{float, Signed, ToBytes};
  |                  ^^^^^  ^^^^^^
Raw output
vm/src/vm_hooks/vh_handler/vh_managed_types.rs:7:18:w:warning: unused imports: `Signed`, `float`
 --> vm/src/vm_hooks/vh_handler/vh_managed_types.rs:7:18
  |
7 | use num_traits::{float, Signed, ToBytes};
  |                  ^^^^^  ^^^^^^


__END__

Check warning on line 8 in vm/src/vm_hooks/vh_handler/vh_managed_types.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

[clippy] vm/src/vm_hooks/vh_handler/vh_managed_types.rs#L8

warning: unused import: `serde::ser::Serializer`
 --> vm/src/vm_hooks/vh_handler/vh_managed_types.rs:8:5
  |
8 | use serde::ser::Serializer;
  |     ^^^^^^^^^^^^^^^^^^^^^^
Raw output
vm/src/vm_hooks/vh_handler/vh_managed_types.rs:8:5:w:warning: unused import: `serde::ser::Serializer`
 --> vm/src/vm_hooks/vh_handler/vh_managed_types.rs:8:5
  |
8 | use serde::ser::Serializer;
  |     ^^^^^^^^^^^^^^^^^^^^^^


__END__

Check warning on line 7 in vm/src/vm_hooks/vh_handler/vh_managed_types.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

[clippy] vm/src/vm_hooks/vh_handler/vh_managed_types.rs#L7

warning: unused import: `ToBytes`
 --> vm/src/vm_hooks/vh_handler/vh_managed_types.rs:7:33
  |
7 | use num_traits::{float, Signed, ToBytes};
  |                                 ^^^^^^^
Raw output
vm/src/vm_hooks/vh_handler/vh_managed_types.rs:7:33:w:warning: unused import: `ToBytes`
 --> vm/src/vm_hooks/vh_handler/vh_managed_types.rs:7:33
  |
7 | use num_traits::{float, Signed, ToBytes};
  |                                 ^^^^^^^


__END__