mirror of
https://github.com/mainflux/mainflux.git
synced 2025-05-01 13:48:56 +08:00
![dependabot[bot]](/assets/img/avatar_default.png)
Bumps [github.com/lestrrat-go/jwx/v2](https://github.com/lestrrat-go/jwx) from 2.0.8 to 2.0.11. - [Release notes](https://github.com/lestrrat-go/jwx/releases) - [Changelog](https://github.com/lestrrat-go/jwx/blob/develop/v2/Changes) - [Commits](https://github.com/lestrrat-go/jwx/compare/v2.0.8...v2.0.11) --- updated-dependencies: - dependency-name: github.com/lestrrat-go/jwx/v2 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
23 lines
588 B
Go
23 lines
588 B
Go
// Pakage cpu provides APIs to detect CPU features available at runtime.
|
|
package cpu
|
|
|
|
import (
|
|
"github.com/segmentio/asm/cpu/arm"
|
|
"github.com/segmentio/asm/cpu/arm64"
|
|
"github.com/segmentio/asm/cpu/x86"
|
|
)
|
|
|
|
var (
|
|
// X86 is the bitset representing the set of the x86 instruction sets are
|
|
// supported by the CPU.
|
|
X86 = x86.ABI()
|
|
|
|
// ARM is the bitset representing which parts of the arm instruction sets
|
|
// are supported by the CPU.
|
|
ARM = arm.ABI()
|
|
|
|
// ARM64 is the bitset representing which parts of the arm64 instruction
|
|
// sets are supported by the CPU.
|
|
ARM64 = arm64.ABI()
|
|
)
|