2023-02-08 22:03:15 +00:00
|
|
|
[workspace]
|
2023-09-06 14:54:49 +00:00
|
|
|
resolver = "2"
|
2023-02-07 14:44:32 +00:00
|
|
|
|
2023-02-08 22:03:15 +00:00
|
|
|
members = [
|
2023-11-16 01:10:46 +00:00
|
|
|
"consensus",
|
2024-06-09 13:24:44 +00:00
|
|
|
"consensus/fast-sync",
|
2023-12-14 15:39:16 +00:00
|
|
|
"consensus/rules",
|
2023-11-16 01:10:46 +00:00
|
|
|
"cryptonight",
|
2024-01-21 00:04:09 +00:00
|
|
|
"helper",
|
2024-01-29 22:32:16 +00:00
|
|
|
"net/epee-encoding",
|
|
|
|
"net/fixed-bytes",
|
2023-11-16 01:10:46 +00:00
|
|
|
"net/levin",
|
2024-06-24 01:30:47 +00:00
|
|
|
"net/wire",
|
|
|
|
"p2p/p2p",
|
|
|
|
"p2p/p2p-core",
|
|
|
|
"p2p/dandelion-tower",
|
2024-06-04 17:19:25 +00:00
|
|
|
"p2p/async-buffer",
|
2023-12-08 15:03:01 +00:00
|
|
|
"p2p/address-book",
|
2024-06-24 01:30:47 +00:00
|
|
|
"storage/blockchain",
|
|
|
|
"storage/txpool",
|
2024-05-29 01:18:30 +00:00
|
|
|
"storage/database",
|
2024-01-22 01:56:34 +00:00
|
|
|
"pruning",
|
|
|
|
"test-utils",
|
2024-03-27 00:46:32 +00:00
|
|
|
"types",
|
2024-06-05 14:35:08 +00:00
|
|
|
"rpc/json-rpc",
|
2024-06-26 21:24:05 +00:00
|
|
|
"rpc/types",
|
|
|
|
"rpc/interface",
|
2023-02-08 22:03:15 +00:00
|
|
|
]
|
2023-11-16 01:10:46 +00:00
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
lto = true # Build with LTO
|
|
|
|
strip = "none" # Keep panic stack traces
|
|
|
|
codegen-units = 1 # Optimize for binary speed over compile times
|
|
|
|
opt-level = 3
|
|
|
|
|
|
|
|
[profile.dev]
|
|
|
|
lto = false
|
|
|
|
strip = "none"
|
|
|
|
# Not much slower compile times than opt-level 0, but much faster code.
|
|
|
|
opt-level = 1
|
|
|
|
|
|
|
|
[profile.dev.package."*"]
|
|
|
|
# Compile dependencies with max optimization.
|
|
|
|
# This is obviously slower on a cold build,
|
|
|
|
# but you only build these once.
|
|
|
|
opt-level = 3
|
|
|
|
|
|
|
|
[workspace.dependencies]
|
2024-01-21 14:46:03 +00:00
|
|
|
async-trait = { version = "0.1.74", default-features = false }
|
2024-03-05 01:29:57 +00:00
|
|
|
bitflags = { version = "2.4.2", default-features = false }
|
2024-01-21 14:46:03 +00:00
|
|
|
borsh = { version = "1.2.1", default-features = false }
|
2024-03-27 00:46:32 +00:00
|
|
|
bytemuck = { version = "1.14.3", default-features = false }
|
2024-01-21 14:46:03 +00:00
|
|
|
bytes = { version = "1.5.0", default-features = false }
|
Database (#35)
* rename `database` -> `old_database`
Keeping it around for reference until new implementation is complete.
* create new `database/` skeleton
* add `DATABASE.md` design doc skeleton
* move design doc to `database/README.md`
* add rough code
* `lib.rs` -> `gist.rs`
* database: use workspace deps
* workspace: include `database/` as member
CI will now include this crate.
* cargo fmt
* database: `AGPL` -> `MIT`
* readme: add `TODO`s
* add base files
* cargo.toml: add `heed` feature
* fix clippy
* lib.rs: add extremely pedantic lints
* readme: add `# Backends`
* cargo.toml: add `cfg-if`
* add `backend/` structure
* base `database.rs`
* cargo.toml: add `borsh`
* backend: add `DATABASE_BACKEND`
* base `error.rs`
* base `database.rs`
* base `transaction.rs`
* base `table.rs`
* lib.rs: add imports
* add `pod.rs`
* pod: use `Read/Write`, add tests for all primitive numbers
* pod: impl Pod for `Vec<u8>`, `[u8; N]`
* pod: add docs, add `private::Sealed`
* pod: `to_writer`, `from_reader`
The new `as_bytes` + `from_bytes` now allows (de)serializing from
bytes directly instead of going through Read/Write.
Different array return sizes are abstracted away with `-> impl AsRef<[u8]>`
* pod: impl Pod for `Box<[u8]>`
* pod: return `Err` on incorrect length in `from_bytes()`
* pod: docs
* pod: impl Pod for `Arc<[u8]>`
* readme: docs
* database: add `create_table()`, `get_table()`
* table: `Pod` bound
* backend: move into directories
* pod: add `into_bytes()`
* heed: impl `BytesEncode`, `BytesDecode`
* add `actor`, `service` features
The thread/actor system used will be gated behind `actor`,
and the `tower/tokio` integration will be gated behind `service`.
* add `lib.rs` docs
* service: add `service.rs`
* service: add `reader.rs`
* service: add `writer.rs`
* service: add `request.rs` & `response.rs`
* cargo.toml: add `crossbeam`
* service: add/use `enum Request`, `enum Response`
* service: basic signatures for thread-pools, `Writer` -> `Writers`
* service: split `tower::Service<ReadRequest/WriteRequest>`
* service: impl `tower::Service` for `Database(Reader|Writer)`
* service: add `init()`, impl basic `Reader/Writer` pools
* service: add example `Request`'s
* service: add example `ReadRequest` handling
* temporarily allow clippy lints
* readme: update file structure
* transaction: add `RoTx::get_range()`
* service: module docs
* cargo.toml: add `cuprate-helper`
* service: scale readers/writers based on thread count
* database: change lifetimes
* heed: impl Database for `heed`
* heed: add `ConcreteRoTx`, `ConcreteRwTx`, impl Tx traits
* docs
* service: `read.rs` docs
* service: `write.rs` docs
* service: request/response docs
* service: use `OnceLock` in `init()`, add `db_read()`, `db_write()`
* service: leak database into `&'static`
* database: add `#[inline]`, `#[cold]`
* service: `free.rs` docs, more `#[inline]` + `#[cold]`
* service: add `shutdown()`
* service: add `Request::Shutdown`
* service: `shutdown()` docs
* heed: hide concrete tx types
* lib.rs: add terms
* split `Env` <-> `Database`
* cargo.toml: add `paste`
* database: add `tables/`
* impl `serde/borsh` where possible
* tables: add `Tables`, add test docs
* make db backend mutually exclusive to fix `--all-features`
* tables: use `$()*` in `tables!()`
* cargo.toml: add `sanakirja 1.4.0`
* sanakirja: impl `Env`
* sanakirja: impl `Database`
* sanakirja: impl `Transaction`
* table: temporarily fix `sanakirja` K/V bounds
* table: fix `#[cfg]`
* cargo.toml: fix deps
* lib.rs: docs
* service: docs
* readme: add files, update `# Documentation`, add `# Layers`
* readme: `src/` file purpose
* readme: `src/service/` file purpose
* readme: `src/backend/` file purpose
* fix `Cargo.lock` merge conflict
* database: remove `gist.rs`
* add to `constants.rs`
* add top `//! comments` for files/modules
* constants: add sanity-check test
* service: add `only_one_database` test in `free.rs`
* service: add `tests.rs`
* remove unneeded markers + imports
* backend: fix `get_range()`'s trait `impl` return
* env: add `create_tables_if_needed()`, don't return `Option<Db>`
* sort imports by `CONTRIBUTING.md` rules
oops sorry boog
* add `monero.rs`
* monero: docs
* database: add missing `RoTx/RwTx` inputs
* backend: add missing `RoTx/RwTx` inputs
* `monero.rs` trait -> free functions in `ops/`
* pod: make methods infallible
* ci: add `rustup update` step
* service: use `Arc` instead of leaking, remove `db_read/db_write`
* service: use `InfallibleOneshotReceiver` for readers
* service: shutdown on error, add todos
* service: remove `Request`
* service: combine `ReadResponse` and `WriteResponse`
* service: use `InfallibleOneshotReceiver` for writer
* service: only spawn 1 writer, don't allow cloning writer handle
* table: add associated `const CONSTANT_SIZE`
* add `key.rs` + `trait Key`, add bound to `Table`
* fix typos
2024-02-13 17:43:25 +00:00
|
|
|
cfg-if = { version = "1.0.0", default-features = false }
|
2024-01-21 14:46:03 +00:00
|
|
|
clap = { version = "4.4.7", default-features = false }
|
|
|
|
chrono = { version = "0.4.31", default-features = false }
|
2024-01-21 15:18:25 +00:00
|
|
|
crypto-bigint = { version = "0.5.5", default-features = false }
|
2024-02-10 23:19:12 +00:00
|
|
|
crossbeam = { version = "0.8.4", default-features = false }
|
2024-06-26 21:59:11 +00:00
|
|
|
curve25519-dalek = { version = "4.1.3", default-features = false }
|
2024-05-31 00:52:12 +00:00
|
|
|
dalek-ff-group = { git = "https://github.com/Cuprate/serai.git", rev = "d27d934", default-features = false }
|
2024-05-17 13:52:51 +00:00
|
|
|
dashmap = { version = "5.5.3", default-features = false }
|
2024-01-21 14:46:03 +00:00
|
|
|
dirs = { version = "5.0.1", default-features = false }
|
|
|
|
futures = { version = "0.3.29", default-features = false }
|
|
|
|
hex = { version = "0.4.3", default-features = false }
|
|
|
|
hex-literal = { version = "0.4", default-features = false }
|
2024-03-20 20:58:12 +00:00
|
|
|
indexmap = { version = "2.2.5", default-features = false }
|
2024-05-31 00:52:12 +00:00
|
|
|
monero-serai = { git = "https://github.com/Cuprate/serai.git", rev = "d27d934", default-features = false }
|
|
|
|
multiexp = { git = "https://github.com/Cuprate/serai.git", rev = "d27d934", default-features = false }
|
Database (#35)
* rename `database` -> `old_database`
Keeping it around for reference until new implementation is complete.
* create new `database/` skeleton
* add `DATABASE.md` design doc skeleton
* move design doc to `database/README.md`
* add rough code
* `lib.rs` -> `gist.rs`
* database: use workspace deps
* workspace: include `database/` as member
CI will now include this crate.
* cargo fmt
* database: `AGPL` -> `MIT`
* readme: add `TODO`s
* add base files
* cargo.toml: add `heed` feature
* fix clippy
* lib.rs: add extremely pedantic lints
* readme: add `# Backends`
* cargo.toml: add `cfg-if`
* add `backend/` structure
* base `database.rs`
* cargo.toml: add `borsh`
* backend: add `DATABASE_BACKEND`
* base `error.rs`
* base `database.rs`
* base `transaction.rs`
* base `table.rs`
* lib.rs: add imports
* add `pod.rs`
* pod: use `Read/Write`, add tests for all primitive numbers
* pod: impl Pod for `Vec<u8>`, `[u8; N]`
* pod: add docs, add `private::Sealed`
* pod: `to_writer`, `from_reader`
The new `as_bytes` + `from_bytes` now allows (de)serializing from
bytes directly instead of going through Read/Write.
Different array return sizes are abstracted away with `-> impl AsRef<[u8]>`
* pod: impl Pod for `Box<[u8]>`
* pod: return `Err` on incorrect length in `from_bytes()`
* pod: docs
* pod: impl Pod for `Arc<[u8]>`
* readme: docs
* database: add `create_table()`, `get_table()`
* table: `Pod` bound
* backend: move into directories
* pod: add `into_bytes()`
* heed: impl `BytesEncode`, `BytesDecode`
* add `actor`, `service` features
The thread/actor system used will be gated behind `actor`,
and the `tower/tokio` integration will be gated behind `service`.
* add `lib.rs` docs
* service: add `service.rs`
* service: add `reader.rs`
* service: add `writer.rs`
* service: add `request.rs` & `response.rs`
* cargo.toml: add `crossbeam`
* service: add/use `enum Request`, `enum Response`
* service: basic signatures for thread-pools, `Writer` -> `Writers`
* service: split `tower::Service<ReadRequest/WriteRequest>`
* service: impl `tower::Service` for `Database(Reader|Writer)`
* service: add `init()`, impl basic `Reader/Writer` pools
* service: add example `Request`'s
* service: add example `ReadRequest` handling
* temporarily allow clippy lints
* readme: update file structure
* transaction: add `RoTx::get_range()`
* service: module docs
* cargo.toml: add `cuprate-helper`
* service: scale readers/writers based on thread count
* database: change lifetimes
* heed: impl Database for `heed`
* heed: add `ConcreteRoTx`, `ConcreteRwTx`, impl Tx traits
* docs
* service: `read.rs` docs
* service: `write.rs` docs
* service: request/response docs
* service: use `OnceLock` in `init()`, add `db_read()`, `db_write()`
* service: leak database into `&'static`
* database: add `#[inline]`, `#[cold]`
* service: `free.rs` docs, more `#[inline]` + `#[cold]`
* service: add `shutdown()`
* service: add `Request::Shutdown`
* service: `shutdown()` docs
* heed: hide concrete tx types
* lib.rs: add terms
* split `Env` <-> `Database`
* cargo.toml: add `paste`
* database: add `tables/`
* impl `serde/borsh` where possible
* tables: add `Tables`, add test docs
* make db backend mutually exclusive to fix `--all-features`
* tables: use `$()*` in `tables!()`
* cargo.toml: add `sanakirja 1.4.0`
* sanakirja: impl `Env`
* sanakirja: impl `Database`
* sanakirja: impl `Transaction`
* table: temporarily fix `sanakirja` K/V bounds
* table: fix `#[cfg]`
* cargo.toml: fix deps
* lib.rs: docs
* service: docs
* readme: add files, update `# Documentation`, add `# Layers`
* readme: `src/` file purpose
* readme: `src/service/` file purpose
* readme: `src/backend/` file purpose
* fix `Cargo.lock` merge conflict
* database: remove `gist.rs`
* add to `constants.rs`
* add top `//! comments` for files/modules
* constants: add sanity-check test
* service: add `only_one_database` test in `free.rs`
* service: add `tests.rs`
* remove unneeded markers + imports
* backend: fix `get_range()`'s trait `impl` return
* env: add `create_tables_if_needed()`, don't return `Option<Db>`
* sort imports by `CONTRIBUTING.md` rules
oops sorry boog
* add `monero.rs`
* monero: docs
* database: add missing `RoTx/RwTx` inputs
* backend: add missing `RoTx/RwTx` inputs
* `monero.rs` trait -> free functions in `ops/`
* pod: make methods infallible
* ci: add `rustup update` step
* service: use `Arc` instead of leaking, remove `db_read/db_write`
* service: use `InfallibleOneshotReceiver` for readers
* service: shutdown on error, add todos
* service: remove `Request`
* service: combine `ReadResponse` and `WriteResponse`
* service: use `InfallibleOneshotReceiver` for writer
* service: only spawn 1 writer, don't allow cloning writer handle
* table: add associated `const CONSTANT_SIZE`
* add `key.rs` + `trait Key`, add bound to `Table`
* fix typos
2024-02-13 17:43:25 +00:00
|
|
|
paste = { version = "1.0.14", default-features = false }
|
2024-01-21 14:46:03 +00:00
|
|
|
pin-project = { version = "1.1.3", default-features = false }
|
2024-02-12 13:39:15 +00:00
|
|
|
randomx-rs = { git = "https://github.com/Cuprate/randomx-rs.git", rev = "0028464", default-features = false }
|
2024-01-21 14:46:03 +00:00
|
|
|
rand = { version = "0.8.5", default-features = false }
|
2024-05-05 19:22:41 +00:00
|
|
|
rand_distr = { version = "0.4.3", default-features = false }
|
2024-03-21 20:16:12 +00:00
|
|
|
rayon = { version = "1.9.0", default-features = false }
|
2024-01-21 14:46:03 +00:00
|
|
|
serde_bytes = { version = "0.11.12", default-features = false }
|
|
|
|
serde_json = { version = "1.0.108", default-features = false }
|
|
|
|
serde = { version = "1.0.190", default-features = false }
|
|
|
|
thiserror = { version = "1.0.50", default-features = false }
|
Database (#35)
* rename `database` -> `old_database`
Keeping it around for reference until new implementation is complete.
* create new `database/` skeleton
* add `DATABASE.md` design doc skeleton
* move design doc to `database/README.md`
* add rough code
* `lib.rs` -> `gist.rs`
* database: use workspace deps
* workspace: include `database/` as member
CI will now include this crate.
* cargo fmt
* database: `AGPL` -> `MIT`
* readme: add `TODO`s
* add base files
* cargo.toml: add `heed` feature
* fix clippy
* lib.rs: add extremely pedantic lints
* readme: add `# Backends`
* cargo.toml: add `cfg-if`
* add `backend/` structure
* base `database.rs`
* cargo.toml: add `borsh`
* backend: add `DATABASE_BACKEND`
* base `error.rs`
* base `database.rs`
* base `transaction.rs`
* base `table.rs`
* lib.rs: add imports
* add `pod.rs`
* pod: use `Read/Write`, add tests for all primitive numbers
* pod: impl Pod for `Vec<u8>`, `[u8; N]`
* pod: add docs, add `private::Sealed`
* pod: `to_writer`, `from_reader`
The new `as_bytes` + `from_bytes` now allows (de)serializing from
bytes directly instead of going through Read/Write.
Different array return sizes are abstracted away with `-> impl AsRef<[u8]>`
* pod: impl Pod for `Box<[u8]>`
* pod: return `Err` on incorrect length in `from_bytes()`
* pod: docs
* pod: impl Pod for `Arc<[u8]>`
* readme: docs
* database: add `create_table()`, `get_table()`
* table: `Pod` bound
* backend: move into directories
* pod: add `into_bytes()`
* heed: impl `BytesEncode`, `BytesDecode`
* add `actor`, `service` features
The thread/actor system used will be gated behind `actor`,
and the `tower/tokio` integration will be gated behind `service`.
* add `lib.rs` docs
* service: add `service.rs`
* service: add `reader.rs`
* service: add `writer.rs`
* service: add `request.rs` & `response.rs`
* cargo.toml: add `crossbeam`
* service: add/use `enum Request`, `enum Response`
* service: basic signatures for thread-pools, `Writer` -> `Writers`
* service: split `tower::Service<ReadRequest/WriteRequest>`
* service: impl `tower::Service` for `Database(Reader|Writer)`
* service: add `init()`, impl basic `Reader/Writer` pools
* service: add example `Request`'s
* service: add example `ReadRequest` handling
* temporarily allow clippy lints
* readme: update file structure
* transaction: add `RoTx::get_range()`
* service: module docs
* cargo.toml: add `cuprate-helper`
* service: scale readers/writers based on thread count
* database: change lifetimes
* heed: impl Database for `heed`
* heed: add `ConcreteRoTx`, `ConcreteRwTx`, impl Tx traits
* docs
* service: `read.rs` docs
* service: `write.rs` docs
* service: request/response docs
* service: use `OnceLock` in `init()`, add `db_read()`, `db_write()`
* service: leak database into `&'static`
* database: add `#[inline]`, `#[cold]`
* service: `free.rs` docs, more `#[inline]` + `#[cold]`
* service: add `shutdown()`
* service: add `Request::Shutdown`
* service: `shutdown()` docs
* heed: hide concrete tx types
* lib.rs: add terms
* split `Env` <-> `Database`
* cargo.toml: add `paste`
* database: add `tables/`
* impl `serde/borsh` where possible
* tables: add `Tables`, add test docs
* make db backend mutually exclusive to fix `--all-features`
* tables: use `$()*` in `tables!()`
* cargo.toml: add `sanakirja 1.4.0`
* sanakirja: impl `Env`
* sanakirja: impl `Database`
* sanakirja: impl `Transaction`
* table: temporarily fix `sanakirja` K/V bounds
* table: fix `#[cfg]`
* cargo.toml: fix deps
* lib.rs: docs
* service: docs
* readme: add files, update `# Documentation`, add `# Layers`
* readme: `src/` file purpose
* readme: `src/service/` file purpose
* readme: `src/backend/` file purpose
* fix `Cargo.lock` merge conflict
* database: remove `gist.rs`
* add to `constants.rs`
* add top `//! comments` for files/modules
* constants: add sanity-check test
* service: add `only_one_database` test in `free.rs`
* service: add `tests.rs`
* remove unneeded markers + imports
* backend: fix `get_range()`'s trait `impl` return
* env: add `create_tables_if_needed()`, don't return `Option<Db>`
* sort imports by `CONTRIBUTING.md` rules
oops sorry boog
* add `monero.rs`
* monero: docs
* database: add missing `RoTx/RwTx` inputs
* backend: add missing `RoTx/RwTx` inputs
* `monero.rs` trait -> free functions in `ops/`
* pod: make methods infallible
* ci: add `rustup update` step
* service: use `Arc` instead of leaking, remove `db_read/db_write`
* service: use `InfallibleOneshotReceiver` for readers
* service: shutdown on error, add todos
* service: remove `Request`
* service: combine `ReadResponse` and `WriteResponse`
* service: use `InfallibleOneshotReceiver` for writer
* service: only spawn 1 writer, don't allow cloning writer handle
* table: add associated `const CONSTANT_SIZE`
* add `key.rs` + `trait Key`, add bound to `Table`
* fix typos
2024-02-13 17:43:25 +00:00
|
|
|
thread_local = { version = "1.1.7", default-features = false }
|
2024-01-21 14:46:03 +00:00
|
|
|
tokio-util = { version = "0.7.10", default-features = false }
|
|
|
|
tokio-stream = { version = "0.1.14", default-features = false }
|
|
|
|
tokio = { version = "1.33.0", default-features = false }
|
|
|
|
tower = { version = "0.4.13", default-features = false }
|
|
|
|
tracing-subscriber = { version = "0.3.17", default-features = false }
|
|
|
|
tracing = { version = "0.1.40", default-features = false }
|
2023-11-16 01:10:46 +00:00
|
|
|
|
2023-12-14 15:39:16 +00:00
|
|
|
## workspace.dev-dependencies
|
2024-02-25 21:21:25 +00:00
|
|
|
tempfile = { version = "3" }
|
2024-04-25 18:58:45 +00:00
|
|
|
pretty_assertions = { version = "1.4.0" }
|
2024-02-12 13:39:15 +00:00
|
|
|
proptest = { version = "1" }
|
|
|
|
proptest-derive = { version = "0.4.0" }
|
2024-06-22 00:29:40 +00:00
|
|
|
tokio-test = { version = "0.4.4" }
|
2023-12-14 15:39:16 +00:00
|
|
|
|
2023-11-16 01:10:46 +00:00
|
|
|
## TODO:
|
|
|
|
## Potential dependencies.
|
|
|
|
# arc-swap = { version = "1.6.0" } # Atomically swappable Arc<T> | https://github.com/vorner/arc-swap
|
|
|
|
# itoa = { version = "1.0.9" } # Fast integer to string formatting | https://github.com/dtolnay/itoa
|
|
|
|
# notify = { version = "6.1.1" } # Filesystem watching | https://github.com/notify-rs/notify
|
|
|
|
# once_cell = { version = "1.18.0" } # Lazy/one-time initialization | https://github.com/matklad/once_cell
|
|
|
|
# open = { version = "5.0.0" } # Open PATH/URL, probably for binaries | https://github.com/byron/open-rs
|
|
|
|
# regex = { version = "1.10.2" } # Regular expressions | https://github.com/rust-lang/regex
|
|
|
|
# ryu = { version = "1.0.15" } # Fast float to string formatting | https://github.com/dtolnay/ryu
|
|
|
|
|
2024-07-10 00:32:23 +00:00
|
|
|
# Lints: cold, warm, hot: <https://github.com/Cuprate/cuprate/issues/131>
|
|
|
|
[workspace.lints.clippy]
|
|
|
|
# Cold
|
|
|
|
borrow_as_ptr = "deny"
|
|
|
|
case_sensitive_file_extension_comparisons = "deny"
|
|
|
|
cast_lossless = "deny"
|
|
|
|
cast_ptr_alignment = "deny"
|
|
|
|
checked_conversions = "deny"
|
|
|
|
cloned_instead_of_copied = "deny"
|
|
|
|
doc_link_with_quotes = "deny"
|
|
|
|
empty_enum = "deny"
|
|
|
|
enum_glob_use = "deny"
|
|
|
|
expl_impl_clone_on_copy = "deny"
|
|
|
|
explicit_into_iter_loop = "deny"
|
|
|
|
filter_map_next = "deny"
|
|
|
|
flat_map_option = "deny"
|
|
|
|
from_iter_instead_of_collect = "deny"
|
|
|
|
if_not_else = "deny"
|
|
|
|
ignored_unit_patterns = "deny"
|
|
|
|
inconsistent_struct_constructor = "deny"
|
|
|
|
index_refutable_slice = "deny"
|
|
|
|
inefficient_to_string = "deny"
|
|
|
|
invalid_upcast_comparisons = "deny"
|
|
|
|
iter_filter_is_ok = "deny"
|
|
|
|
iter_filter_is_some = "deny"
|
|
|
|
implicit_clone = "deny"
|
|
|
|
manual_c_str_literals = "deny"
|
|
|
|
manual_instant_elapsed = "deny"
|
|
|
|
manual_is_variant_and = "deny"
|
|
|
|
manual_let_else = "deny"
|
|
|
|
manual_ok_or = "deny"
|
|
|
|
manual_string_new = "deny"
|
|
|
|
map_unwrap_or = "deny"
|
|
|
|
match_bool = "deny"
|
|
|
|
match_same_arms = "deny"
|
|
|
|
match_wildcard_for_single_variants = "deny"
|
|
|
|
mismatching_type_param_order = "deny"
|
|
|
|
mut_mut = "deny"
|
|
|
|
needless_bitwise_bool = "deny"
|
|
|
|
needless_continue = "deny"
|
|
|
|
needless_for_each = "deny"
|
|
|
|
needless_raw_string_hashes = "deny"
|
|
|
|
no_effect_underscore_binding = "deny"
|
|
|
|
no_mangle_with_rust_abi = "deny"
|
|
|
|
option_as_ref_cloned = "deny"
|
|
|
|
option_option = "deny"
|
|
|
|
ptr_as_ptr = "deny"
|
|
|
|
ptr_cast_constness = "deny"
|
|
|
|
pub_underscore_fields = "deny"
|
|
|
|
redundant_closure_for_method_calls = "deny"
|
|
|
|
ref_as_ptr = "deny"
|
|
|
|
ref_option_ref = "deny"
|
|
|
|
same_functions_in_if_condition = "deny"
|
|
|
|
semicolon_if_nothing_returned = "deny"
|
|
|
|
trivially_copy_pass_by_ref = "deny"
|
|
|
|
uninlined_format_args = "deny"
|
|
|
|
unnecessary_join = "deny"
|
|
|
|
unnested_or_patterns = "deny"
|
|
|
|
unused_async = "deny"
|
|
|
|
unused_self = "deny"
|
|
|
|
used_underscore_binding = "deny"
|
|
|
|
zero_sized_map_values = "deny"
|
|
|
|
as_ptr_cast_mut = "deny"
|
|
|
|
clear_with_drain = "deny"
|
|
|
|
collection_is_never_read = "deny"
|
|
|
|
debug_assert_with_mut_call = "deny"
|
|
|
|
derive_partial_eq_without_eq = "deny"
|
|
|
|
empty_line_after_doc_comments = "deny"
|
|
|
|
empty_line_after_outer_attr = "deny"
|
|
|
|
equatable_if_let = "deny"
|
|
|
|
iter_on_empty_collections = "deny"
|
|
|
|
iter_on_single_items = "deny"
|
|
|
|
iter_with_drain = "deny"
|
|
|
|
needless_collect = "deny"
|
|
|
|
needless_pass_by_ref_mut = "deny"
|
|
|
|
negative_feature_names = "deny"
|
|
|
|
non_send_fields_in_send_ty = "deny"
|
|
|
|
nonstandard_macro_braces = "deny"
|
|
|
|
path_buf_push_overwrite = "deny"
|
|
|
|
read_zero_byte_vec = "deny"
|
|
|
|
redundant_clone = "deny"
|
|
|
|
redundant_feature_names = "deny"
|
|
|
|
trailing_empty_array = "deny"
|
|
|
|
trait_duplication_in_bounds = "deny"
|
|
|
|
type_repetition_in_bounds = "deny"
|
|
|
|
uninhabited_references = "deny"
|
|
|
|
unnecessary_struct_initialization = "deny"
|
|
|
|
unused_peekable = "deny"
|
|
|
|
unused_rounding = "deny"
|
|
|
|
use_self = "deny"
|
|
|
|
useless_let_if_seq = "deny"
|
|
|
|
wildcard_dependencies = "deny"
|
|
|
|
unseparated_literal_suffix = "deny"
|
|
|
|
unnecessary_safety_doc = "deny"
|
|
|
|
unnecessary_safety_comment = "deny"
|
|
|
|
unnecessary_self_imports = "deny"
|
|
|
|
tests_outside_test_module = "deny"
|
|
|
|
string_to_string = "deny"
|
|
|
|
rest_pat_in_fully_bound_structs = "deny"
|
|
|
|
redundant_type_annotations = "deny"
|
|
|
|
infinite_loop = "deny"
|
|
|
|
|
|
|
|
# Warm
|
|
|
|
cast_possible_truncation = "deny"
|
|
|
|
cast_possible_wrap = "deny"
|
|
|
|
cast_precision_loss = "deny"
|
|
|
|
cast_sign_loss = "deny"
|
|
|
|
copy_iterator = "deny"
|
|
|
|
doc_markdown = "deny"
|
|
|
|
explicit_deref_methods = "deny"
|
|
|
|
explicit_iter_loop = "deny"
|
|
|
|
float_cmp = "deny"
|
|
|
|
fn_params_excessive_bools = "deny"
|
|
|
|
into_iter_without_iter = "deny"
|
|
|
|
iter_without_into_iter = "deny"
|
|
|
|
iter_not_returning_iterator = "deny"
|
|
|
|
large_digit_groups = "deny"
|
|
|
|
large_types_passed_by_value = "deny"
|
|
|
|
manual_assert = "deny"
|
|
|
|
maybe_infinite_iter = "deny"
|
|
|
|
missing_fields_in_debug = "deny"
|
|
|
|
needless_pass_by_value = "deny"
|
|
|
|
range_minus_one = "deny"
|
|
|
|
range_plus_one = "deny"
|
|
|
|
redundant_else = "deny"
|
|
|
|
ref_binding_to_reference = "deny"
|
|
|
|
return_self_not_must_use = "deny"
|
|
|
|
single_match_else = "deny"
|
|
|
|
string_add_assign = "deny"
|
|
|
|
transmute_ptr_to_ptr = "deny"
|
|
|
|
unchecked_duration_subtraction = "deny"
|
|
|
|
unnecessary_box_returns = "deny"
|
|
|
|
unnecessary_wraps = "deny"
|
|
|
|
branches_sharing_code = "deny"
|
|
|
|
fallible_impl_from = "deny"
|
|
|
|
missing_const_for_fn = "deny"
|
|
|
|
significant_drop_in_scrutinee = "deny"
|
|
|
|
significant_drop_tightening = "deny"
|
|
|
|
try_err = "deny"
|
|
|
|
lossy_float_literal = "deny"
|
|
|
|
let_underscore_must_use = "deny"
|
|
|
|
iter_over_hash_type = "deny"
|
|
|
|
impl_trait_in_params = "deny"
|
|
|
|
get_unwrap = "deny"
|
|
|
|
error_impl_error = "deny"
|
|
|
|
empty_structs_with_brackets = "deny"
|
|
|
|
empty_enum_variants_with_brackets = "deny"
|
|
|
|
empty_drop = "deny"
|
|
|
|
clone_on_ref_ptr = "deny"
|
|
|
|
|
|
|
|
# Hot
|
|
|
|
# inline_always = "deny"
|
|
|
|
# large_futures = "deny"
|
|
|
|
# large_stack_arrays = "deny"
|
|
|
|
# linkedlist = "deny"
|
|
|
|
# missing_errors_doc = "deny"
|
|
|
|
# missing_panics_doc = "deny"
|
|
|
|
# should_panic_without_expect = "deny"
|
|
|
|
# similar_names = "deny"
|
|
|
|
# too_many_lines = "deny"
|
|
|
|
# unreadable_literal = "deny"
|
|
|
|
# wildcard_imports = "deny"
|
|
|
|
# allow_attributes_without_reason = "deny"
|
|
|
|
# missing_assert_message = "deny"
|
|
|
|
# missing_docs_in_private_items = "deny"
|
|
|
|
# undocumented_unsafe_blocks = "deny"
|
|
|
|
# multiple_unsafe_ops_per_block = "deny"
|
|
|
|
# single_char_lifetime_names = "deny"
|
|
|
|
# wildcard_enum_match_arm = "deny"
|
|
|
|
|
|
|
|
[workspace.lints.rust]
|
|
|
|
# Cold
|
|
|
|
absolute_paths_not_starting_with_crate = "deny"
|
|
|
|
explicit_outlives_requirements = "deny"
|
|
|
|
keyword_idents = "deny"
|
|
|
|
missing_abi = "deny"
|
|
|
|
non_ascii_idents = "deny"
|
|
|
|
non_local_definitions = "deny"
|
|
|
|
single_use_lifetimes = "deny"
|
|
|
|
trivial_casts = "deny"
|
|
|
|
trivial_numeric_casts = "deny"
|
|
|
|
unsafe_op_in_unsafe_fn = "deny"
|
|
|
|
unused_crate_dependencies = "deny"
|
|
|
|
unused_import_braces = "deny"
|
|
|
|
unused_lifetimes = "deny"
|
|
|
|
unused_macro_rules = "deny"
|
|
|
|
ambiguous_glob_imports = "deny"
|
|
|
|
unused_unsafe = "deny"
|
|
|
|
|
|
|
|
# Warm
|
|
|
|
let_underscore_drop = "deny"
|
|
|
|
unreachable_pub = "deny"
|
|
|
|
unused_qualifications = "deny"
|
|
|
|
variant_size_differences = "deny"
|
|
|
|
|
|
|
|
# Hot
|
|
|
|
# unused_results = "deny"
|
|
|
|
# non_exhaustive_omitted_patterns = "deny"
|
|
|
|
# missing_docs = "deny"
|
|
|
|
# missing_copy_implementations = "deny"
|