-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
30 lines (26 loc) · 827 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# SPDX-FileCopyrightText: 2024 Shun Sakai
#
# SPDX-License-Identifier: Apache-2.0 OR MIT
[package]
name = "bit-int"
version = "0.2.0"
authors = ["Shun Sakai <[email protected]>"]
edition = "2024"
rust-version = "1.85.0"
description = "An arbitrary fixed bit-width integer library"
documentation = "https://docs.rs/bit-int"
readme = "README.md"
repository = "https://github.com/sorairolake/bit-int"
license = "Apache-2.0 OR MIT"
keywords = ["bit", "bitint", "integer", "numeric"]
categories = ["data-structures", "no-std"]
include = ["/LICENSES", "/README.md", "/src"]
[dependencies]
num-traits = { version = "0.2.19", default-features = false }
[lints.clippy]
cargo = "warn"
nursery = "warn"
pedantic = "warn"
[lints.rust]
missing_debug_implementations = "deny"
rust_2018_idioms = { level = "warn", priority = -1 }