There was an error while loading. Please reload this page.
1 parent 064a5ca commit e923934Copy full SHA for e923934
2 files changed
Cargo.toml
@@ -41,6 +41,9 @@ numpy = "^0.29"
41
[dev-dependencies]
42
ntest = "^0.9"
43
44
+[lints.rust]
45
+unexpected_cfgs = { level = "warn", check-cfg = ["cfg(coverage_nightly)"] }
46
+
47
[profile.dev]
48
opt-level = 2
49
debug-assertions = true
src/accel/lib.rs
@@ -3,7 +3,7 @@
3
// Copyright (C) 2023-2026 Drexel University.
4
// Licensed under the MIT license, see LICENSE.md for details.
5
// SPDX-License-Identifier: MIT
6
-
+#![cfg_attr(coverage_nightly, feature(coverage_attribute))]
7
use pyo3::{exceptions::PyRuntimeError, prelude::*};
8
9
mod als;
0 commit comments