Skip to content

Instantly share code, notes, and snippets.

@Christoph-AK
Created November 30, 2021 07:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Christoph-AK/366e6c39c24976d5bf48064e658b6670 to your computer and use it in GitHub Desktop.
Save Christoph-AK/366e6c39c24976d5bf48064e658b6670 to your computer and use it in GitHub Desktop.
Mysql poem-openapi error
bitvecbreak on  master [?] is 📦 v0.1.0 via 🦀 v1.56.1
❯ cargo b
Compiling bitvec v0.19.4
Compiling mio v0.7.14
Compiling pem v0.8.3
Compiling url v2.2.2
Compiling env_logger v0.8.4
Compiling num-bigint v0.3.3
Compiling num-bigint v0.4.3
Compiling tempfile v3.2.0
Compiling twox-hash v1.6.1
Compiling frunk_proc_macros_impl v0.1.0
error[E0034]: multiple applicable items in scope
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\bitvec-0.19.4\src\field.rs:307:25
|
307 | check("load", len, M::BITS);
| ^^^^ multiple `BITS` found
|
note: candidate #1 is defined in the trait `BitMemory`
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\bitvec-0.19.4\src\mem.rs:29:2
|
29 | const BITS: u8 = mem::size_of::<Self>() as u8 * 8;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
note: candidate #2 is defined in the trait `IsNumber`
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\funty-1.2.0\src\lib.rs:144:2
|
144 | const BITS: u32;
| ^^^^^^^^^^^^^^^^
help: disambiguate the associated constant for candidate #1
|
307 | check("load", len, BitMemory::BITS);
| ~~~~~~~~~~~
help: disambiguate the associated constant for candidate #2
|
307 | check("load", len, IsNumber::BITS);
| ~~~~~~~~~~
error[E0034]: multiple applicable items in scope
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\bitvec-0.19.4\src\field.rs:341:12
|
341 | if M::BITS > T::Mem::BITS {
| ^^^^ multiple `BITS` found
|
note: candidate #1 is defined in the trait `BitMemory`
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\bitvec-0.19.4\src\mem.rs:29:2
|
29 | const BITS: u8 = mem::size_of::<Self>() as u8 * 8;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
note: candidate #2 is defined in the trait `IsNumber`
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\funty-1.2.0\src\lib.rs:144:2
|
144 | const BITS: u32;
| ^^^^^^^^^^^^^^^^
help: disambiguate the associated constant for candidate #1
|
341 | if BitMemory::BITS > T::Mem::BITS {
| ~~~~~~~~~~~
help: disambiguate the associated constant for candidate #2
|
341 | if IsNumber::BITS > T::Mem::BITS {
| ~~~~~~~~~~
error[E0308]: mismatched types
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\bitvec-0.19.4\src\field.rs:341:19
|
304 | fn load_le<M>(&self) -> M
| - this type parameter
...
341 | if M::BITS > T::Mem::BITS {
| ^^^^^^^^^^^^ expected type parameter `M`, found `u8`
|
= note: expected type parameter `M`
found type `u8`
error[E0034]: multiple applicable items in scope
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\bitvec-0.19.4\src\field.rs:362:25
|
362 | check("load", len, M::BITS);
| ^^^^ multiple `BITS` found
|
note: candidate #1 is defined in the trait `BitMemory`
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\bitvec-0.19.4\src\mem.rs:29:2
|
29 | const BITS: u8 = mem::size_of::<Self>() as u8 * 8;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
note: candidate #2 is defined in the trait `IsNumber`
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\funty-1.2.0\src\lib.rs:144:2
|
144 | const BITS: u32;
| ^^^^^^^^^^^^^^^^
help: disambiguate the associated constant for candidate #1
|
362 | check("load", len, BitMemory::BITS);
| ~~~~~~~~~~~
help: disambiguate the associated constant for candidate #2
|
362 | check("load", len, IsNumber::BITS);
| ~~~~~~~~~~
error[E0034]: multiple applicable items in scope
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\bitvec-0.19.4\src\field.rs:377:12
|
377 | if M::BITS > T::Mem::BITS {
| ^^^^ multiple `BITS` found
|
note: candidate #1 is defined in the trait `BitMemory`
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\bitvec-0.19.4\src\mem.rs:29:2
|
29 | const BITS: u8 = mem::size_of::<Self>() as u8 * 8;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
note: candidate #2 is defined in the trait `IsNumber`
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\funty-1.2.0\src\lib.rs:144:2
|
144 | const BITS: u32;
| ^^^^^^^^^^^^^^^^
help: disambiguate the associated constant for candidate #1
|
377 | if BitMemory::BITS > T::Mem::BITS {
| ~~~~~~~~~~~
help: disambiguate the associated constant for candidate #2
|
377 | if IsNumber::BITS > T::Mem::BITS {
| ~~~~~~~~~~
error[E0308]: mismatched types
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\bitvec-0.19.4\src\field.rs:377:19
|
359 | fn load_be<M>(&self) -> M
| - this type parameter
...
377 | if M::BITS > T::Mem::BITS {
| ^^^^^^^^^^^^ expected type parameter `M`, found `u8`
|
= note: expected type parameter `M`
found type `u8`
error[E0034]: multiple applicable items in scope
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\bitvec-0.19.4\src\field.rs:397:26
|
397 | check("store", len, M::BITS);
| ^^^^ multiple `BITS` found
|
note: candidate #1 is defined in the trait `BitMemory`
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\bitvec-0.19.4\src\mem.rs:29:2
|
29 | const BITS: u8 = mem::size_of::<Self>() as u8 * 8;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
note: candidate #2 is defined in the trait `IsNumber`
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\funty-1.2.0\src\lib.rs:144:2
|
144 | const BITS: u32;
| ^^^^^^^^^^^^^^^^
help: disambiguate the associated constant for candidate #1
|
397 | check("store", len, BitMemory::BITS);
| ~~~~~~~~~~~
help: disambiguate the associated constant for candidate #2
|
397 | check("store", len, IsNumber::BITS);
| ~~~~~~~~~~
error[E0034]: multiple applicable items in scope
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\bitvec-0.19.4\src\field.rs:412:12
|
412 | if M::BITS > T::Mem::BITS {
| ^^^^ multiple `BITS` found
|
note: candidate #1 is defined in the trait `BitMemory`
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\bitvec-0.19.4\src\mem.rs:29:2
|
29 | const BITS: u8 = mem::size_of::<Self>() as u8 * 8;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
note: candidate #2 is defined in the trait `IsNumber`
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\funty-1.2.0\src\lib.rs:144:2
|
144 | const BITS: u32;
| ^^^^^^^^^^^^^^^^
help: disambiguate the associated constant for candidate #1
|
412 | if BitMemory::BITS > T::Mem::BITS {
| ~~~~~~~~~~~
help: disambiguate the associated constant for candidate #2
|
412 | if IsNumber::BITS > T::Mem::BITS {
| ~~~~~~~~~~
error[E0308]: mismatched types
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\bitvec-0.19.4\src\field.rs:412:19
|
394 | fn store_le<M>(&mut self, mut value: M)
| - this type parameter
...
412 | if M::BITS > T::Mem::BITS {
| ^^^^^^^^^^^^ expected type parameter `M`, found `u8`
|
= note: expected type parameter `M`
found type `u8`
error[E0034]: multiple applicable items in scope
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\bitvec-0.19.4\src\field.rs:428:26
|
428 | check("store", len, M::BITS);
| ^^^^ multiple `BITS` found
|
note: candidate #1 is defined in the trait `BitMemory`
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\bitvec-0.19.4\src\mem.rs:29:2
|
29 | const BITS: u8 = mem::size_of::<Self>() as u8 * 8;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
note: candidate #2 is defined in the trait `IsNumber`
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\funty-1.2.0\src\lib.rs:144:2
|
144 | const BITS: u32;
| ^^^^^^^^^^^^^^^^
help: disambiguate the associated constant for candidate #1
|
428 | check("store", len, BitMemory::BITS);
| ~~~~~~~~~~~
help: disambiguate the associated constant for candidate #2
|
428 | check("store", len, IsNumber::BITS);
| ~~~~~~~~~~
error[E0034]: multiple applicable items in scope
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\bitvec-0.19.4\src\field.rs:442:12
|
442 | if M::BITS > T::Mem::BITS {
| ^^^^ multiple `BITS` found
|
note: candidate #1 is defined in the trait `BitMemory`
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\bitvec-0.19.4\src\mem.rs:29:2
|
29 | const BITS: u8 = mem::size_of::<Self>() as u8 * 8;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
note: candidate #2 is defined in the trait `IsNumber`
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\funty-1.2.0\src\lib.rs:144:2
|
144 | const BITS: u32;
| ^^^^^^^^^^^^^^^^
help: disambiguate the associated constant for candidate #1
|
442 | if BitMemory::BITS > T::Mem::BITS {
| ~~~~~~~~~~~
help: disambiguate the associated constant for candidate #2
|
442 | if IsNumber::BITS > T::Mem::BITS {
| ~~~~~~~~~~
error[E0308]: mismatched types
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\bitvec-0.19.4\src\field.rs:442:19
|
425 | fn store_be<M>(&mut self, mut value: M)
| - this type parameter
...
442 | if M::BITS > T::Mem::BITS {
| ^^^^^^^^^^^^ expected type parameter `M`, found `u8`
|
= note: expected type parameter `M`
found type `u8`
error[E0034]: multiple applicable items in scope
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\bitvec-0.19.4\src\field.rs:467:25
|
467 | check("load", len, M::BITS);
| ^^^^ multiple `BITS` found
|
note: candidate #1 is defined in the trait `BitMemory`
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\bitvec-0.19.4\src\mem.rs:29:2
|
29 | const BITS: u8 = mem::size_of::<Self>() as u8 * 8;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
note: candidate #2 is defined in the trait `IsNumber`
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\funty-1.2.0\src\lib.rs:144:2
|
144 | const BITS: u32;
| ^^^^^^^^^^^^^^^^
help: disambiguate the associated constant for candidate #1
|
467 | check("load", len, BitMemory::BITS);
| ~~~~~~~~~~~
help: disambiguate the associated constant for candidate #2
|
467 | check("load", len, IsNumber::BITS);
| ~~~~~~~~~~
error[E0034]: multiple applicable items in scope
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\bitvec-0.19.4\src\field.rs:487:12
|
487 | if M::BITS > T::Mem::BITS {
| ^^^^ multiple `BITS` found
|
note: candidate #1 is defined in the trait `BitMemory`
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\bitvec-0.19.4\src\mem.rs:29:2
|
29 | const BITS: u8 = mem::size_of::<Self>() as u8 * 8;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
note: candidate #2 is defined in the trait `IsNumber`
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\funty-1.2.0\src\lib.rs:144:2
|
144 | const BITS: u32;
| ^^^^^^^^^^^^^^^^
help: disambiguate the associated constant for candidate #1
|
487 | if BitMemory::BITS > T::Mem::BITS {
| ~~~~~~~~~~~
help: disambiguate the associated constant for candidate #2
|
487 | if IsNumber::BITS > T::Mem::BITS {
| ~~~~~~~~~~
error[E0308]: mismatched types
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\bitvec-0.19.4\src\field.rs:487:19
|
464 | fn load_le<M>(&self) -> M
| - this type parameter
...
487 | if M::BITS > T::Mem::BITS {
| ^^^^^^^^^^^^ expected type parameter `M`, found `u8`
|
= note: expected type parameter `M`
found type `u8`
error[E0034]: multiple applicable items in scope
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\bitvec-0.19.4\src\field.rs:507:25
|
507 | check("load", len, M::BITS);
| ^^^^ multiple `BITS` found
|
note: candidate #1 is defined in the trait `BitMemory`
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\bitvec-0.19.4\src\mem.rs:29:2
|
29 | const BITS: u8 = mem::size_of::<Self>() as u8 * 8;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
note: candidate #2 is defined in the trait `IsNumber`
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\funty-1.2.0\src\lib.rs:144:2
|
144 | const BITS: u32;
| ^^^^^^^^^^^^^^^^
help: disambiguate the associated constant for candidate #1
|
507 | check("load", len, BitMemory::BITS);
| ~~~~~~~~~~~
help: disambiguate the associated constant for candidate #2
|
507 | check("load", len, IsNumber::BITS);
| ~~~~~~~~~~
error[E0034]: multiple applicable items in scope
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\bitvec-0.19.4\src\field.rs:523:12
|
523 | if M::BITS > T::Mem::BITS {
| ^^^^ multiple `BITS` found
|
note: candidate #1 is defined in the trait `BitMemory`
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\bitvec-0.19.4\src\mem.rs:29:2
|
29 | const BITS: u8 = mem::size_of::<Self>() as u8 * 8;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
note: candidate #2 is defined in the trait `IsNumber`
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\funty-1.2.0\src\lib.rs:144:2
|
144 | const BITS: u32;
| ^^^^^^^^^^^^^^^^
help: disambiguate the associated constant for candidate #1
|
523 | if BitMemory::BITS > T::Mem::BITS {
| ~~~~~~~~~~~
help: disambiguate the associated constant for candidate #2
|
523 | if IsNumber::BITS > T::Mem::BITS {
| ~~~~~~~~~~
error[E0308]: mismatched types
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\bitvec-0.19.4\src\field.rs:523:19
|
504 | fn load_be<M>(&self) -> M
| - this type parameter
...
523 | if M::BITS > T::Mem::BITS {
| ^^^^^^^^^^^^ expected type parameter `M`, found `u8`
|
= note: expected type parameter `M`
found type `u8`
error[E0034]: multiple applicable items in scope
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\bitvec-0.19.4\src\field.rs:548:26
|
548 | check("store", len, M::BITS);
| ^^^^ multiple `BITS` found
|
note: candidate #1 is defined in the trait `BitMemory`
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\bitvec-0.19.4\src\mem.rs:29:2
|
29 | const BITS: u8 = mem::size_of::<Self>() as u8 * 8;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
note: candidate #2 is defined in the trait `IsNumber`
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\funty-1.2.0\src\lib.rs:144:2
|
144 | const BITS: u32;
| ^^^^^^^^^^^^^^^^
help: disambiguate the associated constant for candidate #1
|
548 | check("store", len, BitMemory::BITS);
| ~~~~~~~~~~~
help: disambiguate the associated constant for candidate #2
|
548 | check("store", len, IsNumber::BITS);
| ~~~~~~~~~~
error[E0034]: multiple applicable items in scope
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\bitvec-0.19.4\src\field.rs:565:12
|
565 | if M::BITS > T::Mem::BITS {
| ^^^^ multiple `BITS` found
|
note: candidate #1 is defined in the trait `BitMemory`
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\bitvec-0.19.4\src\mem.rs:29:2
|
29 | const BITS: u8 = mem::size_of::<Self>() as u8 * 8;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
note: candidate #2 is defined in the trait `IsNumber`
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\funty-1.2.0\src\lib.rs:144:2
|
144 | const BITS: u32;
| ^^^^^^^^^^^^^^^^
help: disambiguate the associated constant for candidate #1
|
565 | if BitMemory::BITS > T::Mem::BITS {
| ~~~~~~~~~~~
help: disambiguate the associated constant for candidate #2
|
565 | if IsNumber::BITS > T::Mem::BITS {
| ~~~~~~~~~~
error[E0308]: mismatched types
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\bitvec-0.19.4\src\field.rs:565:19
|
545 | fn store_le<M>(&mut self, mut value: M)
| - this type parameter
...
565 | if M::BITS > T::Mem::BITS {
| ^^^^^^^^^^^^ expected type parameter `M`, found `u8`
|
= note: expected type parameter `M`
found type `u8`
error[E0034]: multiple applicable items in scope
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\bitvec-0.19.4\src\field.rs:586:26
|
586 | check("store", len, M::BITS);
| ^^^^ multiple `BITS` found
|
note: candidate #1 is defined in the trait `BitMemory`
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\bitvec-0.19.4\src\mem.rs:29:2
|
29 | const BITS: u8 = mem::size_of::<Self>() as u8 * 8;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
note: candidate #2 is defined in the trait `IsNumber`
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\funty-1.2.0\src\lib.rs:144:2
|
144 | const BITS: u32;
| ^^^^^^^^^^^^^^^^
help: disambiguate the associated constant for candidate #1
|
586 | check("store", len, BitMemory::BITS);
| ~~~~~~~~~~~
help: disambiguate the associated constant for candidate #2
|
586 | check("store", len, IsNumber::BITS);
| ~~~~~~~~~~
error[E0034]: multiple applicable items in scope
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\bitvec-0.19.4\src\field.rs:608:12
|
608 | if M::BITS > T::Mem::BITS {
| ^^^^ multiple `BITS` found
|
note: candidate #1 is defined in the trait `BitMemory`
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\bitvec-0.19.4\src\mem.rs:29:2
|
29 | const BITS: u8 = mem::size_of::<Self>() as u8 * 8;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
note: candidate #2 is defined in the trait `IsNumber`
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\funty-1.2.0\src\lib.rs:144:2
|
144 | const BITS: u32;
| ^^^^^^^^^^^^^^^^
help: disambiguate the associated constant for candidate #1
|
608 | if BitMemory::BITS > T::Mem::BITS {
| ~~~~~~~~~~~
help: disambiguate the associated constant for candidate #2
|
608 | if IsNumber::BITS > T::Mem::BITS {
| ~~~~~~~~~~
error[E0308]: mismatched types
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\bitvec-0.19.4\src\field.rs:608:19
|
583 | fn store_be<M>(&mut self, mut value: M)
| - this type parameter
...
608 | if M::BITS > T::Mem::BITS {
| ^^^^^^^^^^^^ expected type parameter `M`, found `u8`
|
= note: expected type parameter `M`
found type `u8`
error[E0034]: multiple applicable items in scope
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\bitvec-0.19.4\src\index.rs:172:16
|
172 | if idx >= R::BITS {
| ^^^^ multiple `BITS` found
|
note: candidate #1 is defined in the trait `BitMemory`
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\bitvec-0.19.4\src\mem.rs:29:2
|
29 | const BITS: u8 = mem::size_of::<Self>() as u8 * 8;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
note: candidate #2 is defined in the trait `IsNumber`
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\funty-1.2.0\src\lib.rs:144:2
|
144 | const BITS: u32;
| ^^^^^^^^^^^^^^^^
help: disambiguate the associated constant for candidate #1
|
172 | if idx >= BitMemory::BITS {
| ~~~~~~~~~~~
help: disambiguate the associated constant for candidate #2
|
172 | if idx >= IsNumber::BITS {
| ~~~~~~~~~~
error[E0034]: multiple applicable items in scope
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\bitvec-0.19.4\src\index.rs:197:13
|
197 | idx < R::BITS,
| ^^^^ multiple `BITS` found
|
note: candidate #1 is defined in the trait `BitMemory`
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\bitvec-0.19.4\src\mem.rs:29:2
|
29 | const BITS: u8 = mem::size_of::<Self>() as u8 * 8;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
note: candidate #2 is defined in the trait `IsNumber`
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\funty-1.2.0\src\lib.rs:144:2
|
144 | const BITS: u32;
| ^^^^^^^^^^^^^^^^
help: disambiguate the associated constant for candidate #1
|
197 | idx < BitMemory::BITS,
| ~~~~~~~~~~~
help: disambiguate the associated constant for candidate #2
|
197 | idx < IsNumber::BITS,
| ~~~~~~~~~~
error[E0034]: multiple applicable items in scope
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\bitvec-0.19.4\src\index.rs:200:7
|
200 | R::BITS
| ^^^^ multiple `BITS` found
|
note: candidate #1 is defined in the trait `BitMemory`
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\bitvec-0.19.4\src\mem.rs:29:2
|
29 | const BITS: u8 = mem::size_of::<Self>() as u8 * 8;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
note: candidate #2 is defined in the trait `IsNumber`
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\funty-1.2.0\src\lib.rs:144:2
|
144 | const BITS: u32;
| ^^^^^^^^^^^^^^^^
help: disambiguate the associated constant for candidate #1
|
200 | BitMemory::BITS
| ~~~~~~~~~~~
help: disambiguate the associated constant for candidate #2
|
200 | IsNumber::BITS
| ~~~~~~~~~~
error[E0034]: multiple applicable items in scope
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\bitvec-0.19.4\src\index.rs:218:42
|
218 | (make!(idx next & R::MASK), next == R::BITS)
| ^^^^ multiple `BITS` found
|
note: candidate #1 is defined in the trait `BitMemory`
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\bitvec-0.19.4\src\mem.rs:29:2
|
29 | const BITS: u8 = mem::size_of::<Self>() as u8 * 8;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
note: candidate #2 is defined in the trait `IsNumber`
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\funty-1.2.0\src\lib.rs:144:2
|
144 | const BITS: u32;
| ^^^^^^^^^^^^^^^^
help: disambiguate the associated constant for candidate #1
|
218 | (make!(idx next & R::MASK), next == BitMemory::BITS)
| ~~~~~~~~~~~
help: disambiguate the associated constant for candidate #2
|
218 | (make!(idx next & R::MASK), next == IsNumber::BITS)
| ~~~~~~~~~~
error[E0034]: multiple applicable items in scope
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\bitvec-0.19.4\src\index.rs:357:16
|
357 | if (0 .. R::BITS as isize).contains(&far) {
| ^^^^ multiple `BITS` found
|
note: candidate #1 is defined in the trait `BitMemory`
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\bitvec-0.19.4\src\mem.rs:29:2
|
29 | const BITS: u8 = mem::size_of::<Self>() as u8 * 8;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
note: candidate #2 is defined in the trait `IsNumber`
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\funty-1.2.0\src\lib.rs:144:2
|
144 | const BITS: u32;
| ^^^^^^^^^^^^^^^^
help: disambiguate the associated constant for candidate #1
|
357 | if (0 .. BitMemory::BITS as isize).contains(&far) {
| ~~~~~~~~~~~
help: disambiguate the associated constant for candidate #2
|
357 | if (0 .. IsNumber::BITS as isize).contains(&far) {
| ~~~~~~~~~~
error[E0034]: multiple applicable items in scope
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\bitvec-0.19.4\src\index.rs:550:45
|
550 | pub(crate) const END: Self = make!(tail R::BITS);
| ^^^^ multiple `BITS` found
|
note: candidate #1 is defined in the trait `BitMemory`
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\bitvec-0.19.4\src\mem.rs:29:2
|
29 | const BITS: u8 = mem::size_of::<Self>() as u8 * 8;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
note: candidate #2 is defined in the trait `IsNumber`
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\funty-1.2.0\src\lib.rs:144:2
|
144 | const BITS: u32;
| ^^^^^^^^^^^^^^^^
help: disambiguate the associated constant for candidate #1
|
550 | pub(crate) const END: Self = make!(tail BitMemory::BITS);
| ~~~~~~~~~~~
help: disambiguate the associated constant for candidate #2
|
550 | pub(crate) const END: Self = make!(tail IsNumber::BITS);
| ~~~~~~~~~~
error[E0034]: multiple applicable items in scope
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\bitvec-0.19.4\src\index.rs:572:14
|
572 | end <= R::BITS,
| ^^^^ multiple `BITS` found
|
note: candidate #1 is defined in the trait `BitMemory`
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\bitvec-0.19.4\src\mem.rs:29:2
|
29 | const BITS: u8 = mem::size_of::<Self>() as u8 * 8;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
note: candidate #2 is defined in the trait `IsNumber`
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\funty-1.2.0\src\lib.rs:144:2
|
144 | const BITS: u32;
| ^^^^^^^^^^^^^^^^
help: disambiguate the associated constant for candidate #1
|
572 | end <= BitMemory::BITS,
| ~~~~~~~~~~~
help: disambiguate the associated constant for candidate #2
|
572 | end <= IsNumber::BITS,
| ~~~~~~~~~~
error[E0034]: multiple applicable items in scope
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\bitvec-0.19.4\src\index.rs:575:7
|
575 | R::BITS
| ^^^^ multiple `BITS` found
|
note: candidate #1 is defined in the trait `BitMemory`
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\bitvec-0.19.4\src\mem.rs:29:2
|
29 | const BITS: u8 = mem::size_of::<Self>() as u8 * 8;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
note: candidate #2 is defined in the trait `IsNumber`
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\funty-1.2.0\src\lib.rs:144:2
|
144 | const BITS: u32;
| ^^^^^^^^^^^^^^^^
help: disambiguate the associated constant for candidate #1
|
575 | BitMemory::BITS
| ~~~~~~~~~~~
help: disambiguate the associated constant for candidate #2
|
575 | IsNumber::BITS
| ~~~~~~~~~~
error[E0034]: multiple applicable items in scope
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\bitvec-0.19.4\src\index.rs:631:26
|
631 | let bits_in_head = (R::BITS - head) as usize;
| ^^^^ multiple `BITS` found
|
note: candidate #1 is defined in the trait `BitMemory`
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\bitvec-0.19.4\src\mem.rs:29:2
|
29 | const BITS: u8 = mem::size_of::<Self>() as u8 * 8;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
note: candidate #2 is defined in the trait `IsNumber`
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\funty-1.2.0\src\lib.rs:144:2
|
144 | const BITS: u32;
| ^^^^^^^^^^^^^^^^
help: disambiguate the associated constant for candidate #1
|
631 | let bits_in_head = (BitMemory::BITS - head) as usize;
| ~~~~~~~~~~~
help: disambiguate the associated constant for candidate #2
|
631 | let bits_in_head = (IsNumber::BITS - head) as usize;
| ~~~~~~~~~~
error[E0034]: multiple applicable items in scope
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\bitvec-0.19.4\src\index.rs:729:16
|
729 | if pos >= R::BITS {
| ^^^^ multiple `BITS` found
|
note: candidate #1 is defined in the trait `BitMemory`
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\bitvec-0.19.4\src\mem.rs:29:2
|
29 | const BITS: u8 = mem::size_of::<Self>() as u8 * 8;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
note: candidate #2 is defined in the trait `IsNumber`
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\funty-1.2.0\src\lib.rs:144:2
|
144 | const BITS: u32;
| ^^^^^^^^^^^^^^^^
help: disambiguate the associated constant for candidate #1
|
729 | if pos >= BitMemory::BITS {
| ~~~~~~~~~~~
help: disambiguate the associated constant for candidate #2
|
729 | if pos >= IsNumber::BITS {
| ~~~~~~~~~~
error[E0034]: multiple applicable items in scope
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\bitvec-0.19.4\src\index.rs:756:13
|
756 | pos < R::BITS,
| ^^^^ multiple `BITS` found
|
note: candidate #1 is defined in the trait `BitMemory`
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\bitvec-0.19.4\src\mem.rs:29:2
|
29 | const BITS: u8 = mem::size_of::<Self>() as u8 * 8;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
note: candidate #2 is defined in the trait `IsNumber`
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\funty-1.2.0\src\lib.rs:144:2
|
144 | const BITS: u32;
| ^^^^^^^^^^^^^^^^
help: disambiguate the associated constant for candidate #1
|
756 | pos < BitMemory::BITS,
| ~~~~~~~~~~~
help: disambiguate the associated constant for candidate #2
|
756 | pos < IsNumber::BITS,
| ~~~~~~~~~~
error[E0034]: multiple applicable items in scope
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\bitvec-0.19.4\src\index.rs:759:7
|
759 | R::BITS
| ^^^^ multiple `BITS` found
|
note: candidate #1 is defined in the trait `BitMemory`
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\bitvec-0.19.4\src\mem.rs:29:2
|
29 | const BITS: u8 = mem::size_of::<Self>() as u8 * 8;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
note: candidate #2 is defined in the trait `IsNumber`
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\funty-1.2.0\src\lib.rs:144:2
|
144 | const BITS: u32;
| ^^^^^^^^^^^^^^^^
help: disambiguate the associated constant for candidate #1
|
759 | BitMemory::BITS
| ~~~~~~~~~~~
help: disambiguate the associated constant for candidate #2
|
759 | IsNumber::BITS
| ~~~~~~~~~~
error[E0034]: multiple applicable items in scope
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\bitvec-0.19.4\src\index.rs:907:7
|
907 | R::BITS as usize
| ^^^^ multiple `BITS` found
|
note: candidate #1 is defined in the trait `BitMemory`
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\bitvec-0.19.4\src\mem.rs:29:2
|
29 | const BITS: u8 = mem::size_of::<Self>() as u8 * 8;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
note: candidate #2 is defined in the trait `IsNumber`
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\funty-1.2.0\src\lib.rs:144:2
|
144 | const BITS: u32;
| ^^^^^^^^^^^^^^^^
help: disambiguate the associated constant for candidate #1
|
907 | BitMemory::BITS as usize
| ~~~~~~~~~~~
help: disambiguate the associated constant for candidate #2
|
907 | IsNumber::BITS as usize
| ~~~~~~~~~~
error[E0034]: multiple applicable items in scope
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\bitvec-0.19.4\src\index.rs:942:40
|
942 | write!(fmt, "{:0>1$b}", self.sel, R::BITS as usize)
| ^^^^ multiple `BITS` found
|
note: candidate #1 is defined in the trait `BitMemory`
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\bitvec-0.19.4\src\mem.rs:29:2
|
29 | const BITS: u8 = mem::size_of::<Self>() as u8 * 8;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
note: candidate #2 is defined in the trait `IsNumber`
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\funty-1.2.0\src\lib.rs:144:2
|
144 | const BITS: u32;
| ^^^^^^^^^^^^^^^^
help: disambiguate the associated constant for candidate #1
|
942 | write!(fmt, "{:0>1$b}", self.sel, BitMemory::BITS as usize)
| ~~~~~~~~~~~
help: disambiguate the associated constant for candidate #2
|
942 | write!(fmt, "{:0>1$b}", self.sel, IsNumber::BITS as usize)
| ~~~~~~~~~~
error[E0034]: multiple applicable items in scope
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\bitvec-0.19.4\src\index.rs:1081:41
|
1081 | write!(fmt, "{:0>1$b}", self.mask, R::BITS as usize)
| ^^^^ multiple `BITS` found
|
note: candidate #1 is defined in the trait `BitMemory`
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\bitvec-0.19.4\src\mem.rs:29:2
|
29 | const BITS: u8 = mem::size_of::<Self>() as u8 * 8;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
note: candidate #2 is defined in the trait `IsNumber`
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\funty-1.2.0\src\lib.rs:144:2
|
144 | const BITS: u32;
| ^^^^^^^^^^^^^^^^
help: disambiguate the associated constant for candidate #1
|
1081 | write!(fmt, "{:0>1$b}", self.mask, BitMemory::BITS as usize)
| ~~~~~~~~~~~
help: disambiguate the associated constant for candidate #2
|
1081 | write!(fmt, "{:0>1$b}", self.mask, IsNumber::BITS as usize)
| ~~~~~~~~~~
error[E0034]: multiple applicable items in scope
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\bitvec-0.19.4\src\mem.rs:31:25
|
31 | const INDX: u8 = Self::BITS.trailing_zeros() as u8;
| ^^^^ multiple `BITS` found
|
note: candidate #1 is defined in the trait `BitMemory`
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\bitvec-0.19.4\src\mem.rs:29:2
|
29 | const BITS: u8 = mem::size_of::<Self>() as u8 * 8;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
note: candidate #2 is defined in the trait `IsNumber`
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\funty-1.2.0\src\lib.rs:144:2
|
144 | const BITS: u32;
| ^^^^^^^^^^^^^^^^
help: disambiguate the associated constant for candidate #1
|
31 | const INDX: u8 = BitMemory::BITS.trailing_zeros() as u8;
| ~~~~~~~~~~~
help: disambiguate the associated constant for candidate #2
|
31 | const INDX: u8 = IsNumber::BITS.trailing_zeros() as u8;
| ~~~~~~~~~~
error[E0034]: multiple applicable items in scope
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\bitvec-0.19.4\src\mem.rs:33:25
|
33 | const MASK: u8 = Self::BITS - 1;
| ^^^^ multiple `BITS` found
|
note: candidate #1 is defined in the trait `BitMemory`
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\bitvec-0.19.4\src\mem.rs:29:2
|
29 | const BITS: u8 = mem::size_of::<Self>() as u8 * 8;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
note: candidate #2 is defined in the trait `IsNumber`
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\funty-1.2.0\src\lib.rs:144:2
|
144 | const BITS: u32;
| ^^^^^^^^^^^^^^^^
help: disambiguate the associated constant for candidate #1
|
33 | const MASK: u8 = BitMemory::BITS - 1;
| ~~~~~~~~~~~
help: disambiguate the associated constant for candidate #2
|
33 | const MASK: u8 = IsNumber::BITS - 1;
| ~~~~~~~~~~
error[E0034]: multiple applicable items in scope
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\bitvec-0.19.4\src\order.rs:275:15
|
275 | if ct == R::BITS {
| ^^^^ multiple `BITS` found
|
note: candidate #1 is defined in the trait `BitMemory`
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\bitvec-0.19.4\src\mem.rs:29:2
|
29 | const BITS: u8 = mem::size_of::<Self>() as u8 * 8;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
note: candidate #2 is defined in the trait `IsNumber`
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\funty-1.2.0\src\lib.rs:144:2
|
144 | const BITS: u32;
| ^^^^^^^^^^^^^^^^
help: disambiguate the associated constant for candidate #1
|
275 | if ct == BitMemory::BITS {
| ~~~~~~~~~~~
help: disambiguate the associated constant for candidate #2
|
275 | if ct == IsNumber::BITS {
| ~~~~~~~~~~
error[E0034]: multiple applicable items in scope
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\bitvec-0.19.4\src\order.rs:315:15
|
315 | if ct == R::BITS {
| ^^^^ multiple `BITS` found
|
note: candidate #1 is defined in the trait `BitMemory`
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\bitvec-0.19.4\src\mem.rs:29:2
|
29 | const BITS: u8 = mem::size_of::<Self>() as u8 * 8;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
note: candidate #2 is defined in the trait `IsNumber`
--> C:\Users\local\.cargo\registry\src\github.com-1ecc6299db9ec823\funty-1.2.0\src\lib.rs:144:2
|
144 | const BITS: u32;
| ^^^^^^^^^^^^^^^^
help: disambiguate the associated constant for candidate #1
|
315 | if ct == BitMemory::BITS {
| ~~~~~~~~~~~
help: disambiguate the associated constant for candidate #2
|
315 | if ct == IsNumber::BITS {
| ~~~~~~~~~~
Compiling frunk_derives v0.4.0
Compiling io-enum v1.0.1
Compiling bindgen v0.58.1
Compiling tokio v1.14.0
Compiling chrono v0.4.19
Some errors have detailed explanations: E0034, E0308.
For more information about an error, try `rustc --explain E0034`.
error: could not compile `bitvec` due to 43 previous errors
warning: build failed, waiting for other jobs to finish...
error: build failed
bitvecbreak v0.1.0 (C:\Users\local\Desktop\Daten\Programme\bitvecbreak)
|-- mysql v21.0.2
| |-- bufstream v0.1.4
| |-- bytes v1.1.0
| |-- io-enum v1.0.1 (proc-macro)
| | |-- derive_utils v0.11.2
| | | |-- proc-macro2 v1.0.32
| | | | `-- unicode-xid v0.2.2
| | | |-- quote v1.0.10
| | | | `-- proc-macro2 v1.0.32 (*)
| | | `-- syn v1.0.82
| | | |-- proc-macro2 v1.0.32 (*)
| | | |-- quote v1.0.10 (*)
| | | `-- unicode-xid v0.2.2
| | |-- quote v1.0.10 (*)
| | `-- syn v1.0.82 (*)
| | [build-dependencies]
| | `-- autocfg v1.0.1
| |-- lru v0.6.6
| | `-- hashbrown v0.11.2
| | `-- ahash v0.7.6
| | |-- getrandom v0.2.3
| | | `-- cfg-if v1.0.0
| | `-- once_cell v1.8.0
| | [build-dependencies]
| | `-- version_check v0.9.3
| |-- mysql_common v0.27.5
| | |-- base64 v0.13.0
| | |-- bigdecimal v0.2.2
| | | |-- num-bigint v0.3.3
| | | | |-- num-integer v0.1.44
| | | | | `-- num-traits v0.2.14
| | | | | [build-dependencies]
| | | | | `-- autocfg v1.0.1
| | | | | [build-dependencies]
| | | | | `-- autocfg v1.0.1
| | | | `-- num-traits v0.2.14 (*)
| | | | [build-dependencies]
| | | | `-- autocfg v1.0.1
| | | |-- num-integer v0.1.44 (*)
| | | |-- num-traits v0.2.14 (*)
| | | `-- serde v1.0.130
| | | `-- serde_derive v1.0.130 (proc-macro)
| | | |-- proc-macro2 v1.0.32 (*)
| | | |-- quote v1.0.10 (*)
| | | `-- syn v1.0.82 (*)
| | |-- bitflags v1.3.2
| | |-- bitvec v0.22.3
| | | |-- funty v1.2.0
| | | |-- radium v0.6.2
| | | |-- tap v1.0.1
| | | `-- wyz v0.4.0
| | | `-- tap v1.0.1
| | |-- byteorder v1.4.3
| | |-- bytes v1.1.0
| | |-- chrono v0.4.19
| | | |-- libc v0.2.108
| | | |-- num-integer v0.1.44 (*)
| | | |-- num-traits v0.2.14 (*)
| | | |-- serde v1.0.130 (*)
| | | |-- time v0.1.44
| | | | |-- libc v0.2.108
| | | | `-- winapi v0.3.9
| | | `-- winapi v0.3.9
| | |-- crc32fast v1.2.2
| | | `-- cfg-if v1.0.0
| | |-- flate2 v1.0.22
| | | |-- cfg-if v1.0.0
| | | |-- crc32fast v1.2.2 (*)
| | | |-- libc v0.2.108
| | | `-- libz-sys v1.1.3
| | | [build-dependencies]
| | | |-- cc v1.0.72
| | | |-- pkg-config v0.3.22
| | | `-- vcpkg v0.2.15
| | |-- frunk v0.4.0
| | | |-- frunk_core v0.4.0
| | | |-- frunk_derives v0.4.0 (proc-macro)
| | | | |-- frunk_proc_macro_helpers v0.1.0
| | | | | |-- frunk_core v0.4.0
| | | | | |-- proc-macro2 v1.0.32 (*)
| | | | | |-- quote v1.0.10 (*)
| | | | | `-- syn v1.0.82 (*)
| | | | |-- quote v1.0.10 (*)
| | | | `-- syn v1.0.82 (*)
| | | `-- frunk_proc_macros v0.1.0
| | | |-- frunk_core v0.4.0
| | | |-- frunk_proc_macros_impl v0.1.0 (proc-macro)
| | | | |-- frunk_core v0.4.0
| | | | |-- frunk_proc_macro_helpers v0.1.0 (*)
| | | | |-- proc-macro-hack v0.5.19 (proc-macro)
| | | | |-- quote v1.0.10 (*)
| | | | `-- syn v1.0.82 (*)
| | | `-- proc-macro-hack v0.5.19 (proc-macro)
| | |-- lazy_static v1.4.0
| | |-- lexical v5.2.2
| | | |-- cfg-if v1.0.0
| | | `-- lexical-core v0.7.6
| | | |-- arrayvec v0.5.2
| | | |-- bitflags v1.3.2
| | | |-- cfg-if v1.0.0
| | | |-- ryu v1.0.6
| | | `-- static_assertions v1.1.0
| | |-- num-bigint v0.4.3
| | | |-- num-integer v0.1.44 (*)
| | | `-- num-traits v0.2.14 (*)
| | | [build-dependencies]
| | | `-- autocfg v1.0.1
| | |-- num-traits v0.2.14 (*)
| | |-- rand v0.8.4
| | | |-- rand_chacha v0.3.1
| | | | |-- ppv-lite86 v0.2.15
| | | | `-- rand_core v0.6.3
| | | | `-- getrandom v0.2.3 (*)
| | | `-- rand_core v0.6.3 (*)
| | |-- regex v1.5.4
| | | |-- aho-corasick v0.7.18
| | | | `-- memchr v2.4.1
| | | |-- memchr v2.4.1
| | | `-- regex-syntax v0.6.25
| | |-- rust_decimal v1.17.0
| | | |-- arrayvec v0.5.2
| | | |-- num-traits v0.2.14 (*)
| | | `-- serde v1.0.130 (*)
| | |-- saturating v0.1.0
| | |-- serde v1.0.130 (*)
| | |-- serde_json v1.0.72
| | | |-- itoa v0.4.8
| | | |-- ryu v1.0.6
| | | `-- serde v1.0.130 (*)
| | |-- sha1 v0.6.0
| | |-- sha2 v0.9.8
| | | |-- block-buffer v0.9.0
| | | | `-- generic-array v0.14.4
| | | | `-- typenum v1.14.0
| | | | [build-dependencies]
| | | | `-- version_check v0.9.3
| | | |-- cfg-if v1.0.0
| | | |-- cpufeatures v0.2.1
| | | |-- digest v0.9.0
| | | | `-- generic-array v0.14.4 (*)
| | | `-- opaque-debug v0.3.0
| | |-- smallvec v1.7.0
| | |-- thiserror v1.0.30
| | | `-- thiserror-impl v1.0.30 (proc-macro)
| | | |-- proc-macro2 v1.0.32 (*)
| | | |-- quote v1.0.10 (*)
| | | `-- syn v1.0.82 (*)
| | |-- time v0.2.27
| | | |-- const_fn v0.4.8 (proc-macro)
| | | |-- standback v0.2.17
| | | | [build-dependencies]
| | | | `-- version_check v0.9.3
| | | |-- time-macros v0.1.1
| | | | |-- proc-macro-hack v0.5.19 (proc-macro)
| | | | `-- time-macros-impl v0.1.2 (proc-macro)
| | | | |-- proc-macro-hack v0.5.19 (proc-macro)
| | | | |-- proc-macro2 v1.0.32 (*)
| | | | |-- quote v1.0.10 (*)
| | | | |-- standback v0.2.17
| | | | | [build-dependencies]
| | | | | `-- version_check v0.9.3
| | | | `-- syn v1.0.82 (*)
| | | `-- winapi v0.3.9
| | | [build-dependencies]
| | | `-- version_check v0.9.3
| | `-- uuid v0.8.2
| | [build-dependencies]
| | |-- bindgen v0.58.1
| | | |-- bitflags v1.3.2
| | | |-- cexpr v0.4.0
| | | | `-- nom v5.1.2
| | | | `-- memchr v2.4.1
| | | | [build-dependencies]
| | | | `-- version_check v0.9.3
| | | |-- clang-sys v1.3.0
| | | | |-- glob v0.3.0
| | | | |-- libc v0.2.108
| | | | `-- libloading v0.7.2
| | | | `-- winapi v0.3.9
| | | | [build-dependencies]
| | | | `-- glob v0.3.0
| | | |-- clap v2.34.0
| | | | |-- atty v0.2.14
| | | | | `-- winapi v0.3.9
| | | | |-- bitflags v1.3.2
| | | | |-- strsim v0.8.0
| | | | |-- textwrap v0.11.0
| | | | | `-- unicode-width v0.1.9
| | | | |-- unicode-width v0.1.9
| | | | `-- vec_map v0.8.2
| | | |-- env_logger v0.8.4
| | | | |-- atty v0.2.14 (*)
| | | | |-- humantime v2.1.0
| | | | |-- log v0.4.14
| | | | | `-- cfg-if v1.0.0
| | | | |-- regex v1.5.4 (*)
| | | | `-- termcolor v1.1.2
| | | | `-- winapi-util v0.1.5
| | | | `-- winapi v0.3.9
| | | |-- lazy_static v1.4.0
| | | |-- lazycell v1.3.0
| | | |-- log v0.4.14 (*)
| | | |-- peeking_take_while v0.1.2
| | | |-- proc-macro2 v1.0.32 (*)
| | | |-- quote v1.0.10 (*)
| | | |-- regex v1.5.4 (*)
| | | |-- rustc-hash v1.1.0
| | | |-- shlex v1.1.0
| | | `-- which v3.1.1
| | | `-- libc v0.2.108
| | |-- cc v1.0.72
| | |-- cmake v0.1.46
| | | `-- cc v1.0.72
| | `-- subprocess v0.2.8
| | |-- libc v0.2.108
| | `-- winapi v0.3.9
| |-- named_pipe v0.4.1
| | `-- winapi v0.3.9
| |-- native-tls v0.2.8
| | `-- schannel v0.1.19
| | |-- lazy_static v1.4.0
| | `-- winapi v0.3.9
| |-- once_cell v1.8.0
| |-- pem v0.8.3
| | |-- base64 v0.13.0
| | |-- once_cell v1.8.0
| | `-- regex v1.5.4 (*)
| |-- percent-encoding v2.1.0
| |-- serde v1.0.130 (*)
| |-- serde_json v1.0.72 (*)
| |-- socket2 v0.4.2
| | `-- winapi v0.3.9
| |-- twox-hash v1.6.1
| | |-- cfg-if v1.0.0
| | |-- rand v0.8.4 (*)
| | `-- static_assertions v1.1.0
| `-- url v2.2.2
| |-- form_urlencoded v1.0.1
| | |-- matches v0.1.9
| | `-- percent-encoding v2.1.0
| |-- idna v0.2.3
| | |-- matches v0.1.9
| | |-- unicode-bidi v0.3.7
| | `-- unicode-normalization v0.1.19
| | `-- tinyvec v1.5.1
| | `-- tinyvec_macros v0.1.0
| |-- matches v0.1.9
| `-- percent-encoding v2.1.0
`-- poem-openapi v1.0.31
|-- askama v0.10.5
| |-- askama_derive v0.10.5 (proc-macro)
| | |-- askama_shared v0.11.1
| | | |-- askama_escape v0.10.1
| | | |-- nom v6.1.1
| | | | |-- bitvec v0.19.4
| | | | | |-- funty v1.2.0
| | | | | |-- radium v0.5.3
| | | | | |-- tap v1.0.1
| | | | | `-- wyz v0.2.0
| | | | |-- lexical-core v0.7.6 (*)
| | | | `-- memchr v2.4.1
| | | | [build-dependencies]
| | | | `-- version_check v0.9.3
| | | |-- proc-macro2 v1.0.32 (*)
| | | |-- quote v1.0.10 (*)
| | | `-- syn v1.0.82 (*)
| | |-- proc-macro2 v1.0.32 (*)
| | `-- syn v1.0.82 (*)
| |-- askama_escape v0.10.1
| `-- askama_shared v0.11.1
| |-- askama_escape v0.10.1
| |-- humansize v1.1.1
| |-- nom v6.1.1 (*)
| |-- num-traits v0.2.14 (*)
| |-- percent-encoding v2.1.0
| |-- proc-macro2 v1.0.32 (*)
| |-- quote v1.0.10 (*)
| |-- serde v1.0.130 (*)
| |-- syn v1.0.82
| | |-- proc-macro2 v1.0.32 (*)
| | |-- quote v1.0.10 (*)
| | `-- unicode-xid v0.2.2
| `-- toml v0.5.8
| `-- serde v1.0.130 (*)
|-- base64 v0.13.0
|-- derive_more v0.99.17 (proc-macro)
| |-- convert_case v0.4.0
| |-- proc-macro2 v1.0.32 (*)
| |-- quote v1.0.10 (*)
| `-- syn v1.0.82 (*)
| [build-dependencies]
| `-- rustc_version v0.4.0
| `-- semver v1.0.4
|-- mime v0.3.16
|-- num-traits v0.2.14 (*)
|-- poem v1.0.32
| |-- async-trait v0.1.51 (proc-macro)
| | |-- proc-macro2 v1.0.32 (*)
| | |-- quote v1.0.10 (*)
| | `-- syn v1.0.82 (*)
| |-- bytes v1.1.0
| |-- chrono v0.4.19 (*)
| |-- cookie v0.15.1
| | |-- aes-gcm v0.8.0
| | | |-- aead v0.3.2
| | | | `-- generic-array v0.14.4 (*)
| | | |-- aes v0.6.0
| | | | |-- aes-soft v0.6.4
| | | | | |-- cipher v0.2.5
| | | | | | `-- generic-array v0.14.4 (*)
| | | | | `-- opaque-debug v0.3.0
| | | | `-- cipher v0.2.5 (*)
| | | |-- cipher v0.2.5 (*)
| | | |-- ctr v0.6.0
| | | | `-- cipher v0.2.5 (*)
| | | |-- ghash v0.3.1
| | | | |-- opaque-debug v0.3.0
| | | | `-- polyval v0.4.5
| | | | |-- cpuid-bool v0.2.0
| | | | |-- opaque-debug v0.3.0
| | | | `-- universal-hash v0.4.1
| | | | |-- generic-array v0.14.4 (*)
| | | | `-- subtle v2.4.1
| | | `-- subtle v2.4.1
| | |-- base64 v0.13.0
| | |-- hkdf v0.10.0
| | | |-- digest v0.9.0 (*)
| | | `-- hmac v0.10.1
| | | |-- crypto-mac v0.10.1
| | | | |-- generic-array v0.14.4 (*)
| | | | `-- subtle v2.4.1
| | | `-- digest v0.9.0 (*)
| | |-- hmac v0.10.1 (*)
| | |-- percent-encoding v2.1.0
| | |-- rand v0.8.4 (*)
| | |-- sha2 v0.9.8 (*)
| | |-- subtle v2.4.1
| | `-- time v0.2.27 (*)
| | [build-dependencies]
| | `-- version_check v0.9.3
| |-- futures-util v0.3.18
| | |-- futures-core v0.3.18
| | |-- futures-macro v0.3.18 (proc-macro)
| | | |-- proc-macro2 v1.0.32 (*)
| | | |-- quote v1.0.10 (*)
| | | `-- syn v1.0.82 (*)
| | |-- futures-sink v0.3.18
| | |-- futures-task v0.3.18
| | |-- pin-project-lite v0.2.7
| | |-- pin-utils v0.1.0
| | `-- slab v0.4.5
| |-- headers v0.3.5
| | |-- base64 v0.13.0
| | |-- bitflags v1.3.2
| | |-- bytes v1.1.0
| | |-- headers-core v0.2.0
| | | `-- http v0.2.5
| | | |-- bytes v1.1.0
| | | |-- fnv v1.0.7
| | | `-- itoa v0.4.8
| | |-- http v0.2.5 (*)
| | |-- httpdate v1.0.2
| | |-- mime v0.3.16
| | `-- sha-1 v0.9.8
| | |-- block-buffer v0.9.0 (*)
| | |-- cfg-if v1.0.0
| | |-- cpufeatures v0.2.1
| | |-- digest v0.9.0 (*)
| | `-- opaque-debug v0.3.0
| |-- http v0.2.5 (*)
| |-- hyper v0.14.15
| | |-- bytes v1.1.0
| | |-- futures-channel v0.3.18
| | | `-- futures-core v0.3.18
| | |-- futures-core v0.3.18
| | |-- futures-util v0.3.18 (*)
| | |-- h2 v0.3.7
| | | |-- bytes v1.1.0
| | | |-- fnv v1.0.7
| | | |-- futures-core v0.3.18
| | | |-- futures-sink v0.3.18
| | | |-- futures-util v0.3.18 (*)
| | | |-- http v0.2.5 (*)
| | | |-- indexmap v1.7.0
| | | | `-- hashbrown v0.11.2 (*)
| | | | [build-dependencies]
| | | | `-- autocfg v1.0.1
| | | |-- slab v0.4.5
| | | |-- tokio v1.14.0
| | | | |-- bytes v1.1.0
| | | | |-- memchr v2.4.1
| | | | |-- mio v0.7.14
| | | | | |-- log v0.4.14
| | | | | | `-- cfg-if v1.0.0
| | | | | |-- miow v0.3.7
| | | | | | `-- winapi v0.3.9
| | | | | |-- ntapi v0.3.6
| | | | | | `-- winapi v0.3.9
| | | | | `-- winapi v0.3.9
| | | | |-- once_cell v1.8.0
| | | | |-- pin-project-lite v0.2.7
| | | | |-- tokio-macros v1.6.0 (proc-macro)
| | | | | |-- proc-macro2 v1.0.32 (*)
| | | | | |-- quote v1.0.10 (*)
| | | | | `-- syn v1.0.82 (*)
| | | | `-- winapi v0.3.9
| | | | [build-dependencies]
| | | | `-- autocfg v1.0.1
| | | |-- tokio-util v0.6.9
| | | | |-- bytes v1.1.0
| | | | |-- futures-core v0.3.18
| | | | |-- futures-sink v0.3.18
| | | | |-- log v0.4.14 (*)
| | | | |-- pin-project-lite v0.2.7
| | | | `-- tokio v1.14.0 (*)
| | | `-- tracing v0.1.29
| | | |-- cfg-if v1.0.0
| | | |-- pin-project-lite v0.2.7
| | | |-- tracing-attributes v0.1.18 (proc-macro)
| | | | |-- proc-macro2 v1.0.32 (*)
| | | | |-- quote v1.0.10 (*)
| | | | `-- syn v1.0.82 (*)
| | | `-- tracing-core v0.1.21
| | | `-- lazy_static v1.4.0
| | |-- http v0.2.5 (*)
| | |-- http-body v0.4.4
| | | |-- bytes v1.1.0
| | | |-- http v0.2.5 (*)
| | | `-- pin-project-lite v0.2.7
| | |-- httparse v1.5.1
| | |-- httpdate v1.0.2
| | |-- itoa v0.4.8
| | |-- pin-project-lite v0.2.7
| | |-- socket2 v0.4.2 (*)
| | |-- tokio v1.14.0 (*)
| | |-- tower-service v0.3.1
| | |-- tracing v0.1.29 (*)
| | `-- want v0.3.0
| | |-- log v0.4.14 (*)
| | `-- try-lock v0.2.3
| |-- mime v0.3.16
| |-- mime_guess v2.0.3
| | |-- mime v0.3.16
| | `-- unicase v2.6.0
| | [build-dependencies]
| | `-- version_check v0.9.3
| | [build-dependencies]
| | `-- unicase v2.6.0 (*)
| |-- multer v2.0.1
| | |-- bytes v1.1.0
| | |-- encoding_rs v0.8.29
| | | `-- cfg-if v1.0.0
| | |-- futures-util v0.3.18 (*)
| | |-- http v0.2.5 (*)
| | |-- httparse v1.5.1
| | |-- log v0.4.14 (*)
| | |-- mime v0.3.16
| | |-- spin v0.9.2
| | |-- tokio v1.14.0 (*)
| | `-- twoway v0.2.2
| | |-- memchr v2.4.1
| | `-- unchecked-index v0.2.2
| | [build-dependencies]
| | `-- version_check v0.9.3
| |-- nom v7.1.0
| | |-- memchr v2.4.1
| | `-- minimal-lexical v0.2.1
| | [build-dependencies]
| | `-- version_check v0.9.3
| |-- parking_lot v0.11.2
| | |-- instant v0.1.12
| | | `-- cfg-if v1.0.0
| | |-- lock_api v0.4.5
| | | `-- scopeguard v1.1.0
| | `-- parking_lot_core v0.8.5
| | |-- cfg-if v1.0.0
| | |-- instant v0.1.12 (*)
| | |-- smallvec v1.7.0
| | `-- winapi v0.3.9
| |-- percent-encoding v2.1.0
| |-- pin-project-lite v0.2.7
| |-- poem-derive v1.0.20 (proc-macro)
| | |-- proc-macro-crate v1.1.0
| | | |-- thiserror v1.0.30 (*)
| | | `-- toml v0.5.8 (*)
| | |-- proc-macro2 v1.0.32 (*)
| | |-- quote v1.0.10 (*)
| | `-- syn v1.0.82 (*)
| |-- regex v1.5.4 (*)
| |-- serde v1.0.130 (*)
| |-- serde_json v1.0.72 (*)
| |-- serde_urlencoded v0.7.0
| | |-- form_urlencoded v1.0.1 (*)
| | |-- itoa v0.4.8
| | |-- ryu v1.0.6
| | `-- serde v1.0.130 (*)
| |-- smallvec v1.7.0
| |-- tempfile v3.2.0
| | |-- cfg-if v1.0.0
| | |-- rand v0.8.4 (*)
| | |-- remove_dir_all v0.5.3
| | | `-- winapi v0.3.9
| | `-- winapi v0.3.9
| |-- time v0.2.27 (*)
| |-- tokio v1.14.0 (*)
| |-- tokio-stream v0.1.8
| | |-- futures-core v0.3.18
| | |-- pin-project-lite v0.2.7
| | `-- tokio v1.14.0 (*)
| |-- tokio-util v0.6.9 (*)
| `-- tracing v0.1.29 (*)
|-- poem-openapi-derive v1.0.31 (proc-macro)
| |-- Inflector v0.11.4
| | |-- lazy_static v1.4.0
| | `-- regex v1.5.4 (*)
| |-- darling v0.13.0
| | |-- darling_core v0.13.0
| | | |-- fnv v1.0.7
| | | |-- ident_case v1.0.1
| | | |-- proc-macro2 v1.0.32 (*)
| | | |-- quote v1.0.10 (*)
| | | |-- strsim v0.10.0
| | | `-- syn v1.0.82 (*)
| | `-- darling_macro v0.13.0 (proc-macro)
| | |-- darling_core v0.13.0 (*)
| | |-- quote v1.0.10 (*)
| | `-- syn v1.0.82 (*)
| |-- http v0.2.5 (*)
| |-- indexmap v1.7.0
| | `-- hashbrown v0.11.2
| | [build-dependencies]
| | `-- autocfg v1.0.1
| |-- proc-macro-crate v1.1.0 (*)
| |-- proc-macro2 v1.0.32 (*)
| |-- quote v1.0.10 (*)
| |-- regex v1.5.4 (*)
| |-- syn v1.0.82 (*)
| `-- thiserror v1.0.30 (*)
|-- regex v1.5.4 (*)
|-- serde v1.0.130 (*)
|-- serde_json v1.0.72 (*)
|-- thiserror v1.0.30 (*)
|-- tokio v1.14.0 (*)
`-- typed-headers v0.2.0
|-- base64 v0.11.0
|-- bytes v0.5.6
|-- chrono v0.4.19 (*)
|-- http v0.2.5 (*)
`-- mime v0.3.16
[package]
name = "bitvecbreak"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
poem-openapi = "1.0.31"
mysql = "21.0.2"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment