Skip to content

Commit a1e49eb

Browse files
committed
feat(deep_causality_sparse): Fixed feature flag pass through for Bazel config.
Signed-off-by: Marvin Hansen <marvin.hansen@gmail.com>
1 parent 4231410 commit a1e49eb

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

deep_causality_num/src/algebra/monoid.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@
33
* Copyright (c) "2025" . The DeepCausality Authors and Contributors. All Rights Reserved.
44
*/
55
use crate::{Associative, MulMagma, One, Zero};
6-
use core::ops::{Add, AddAssign};
7-
use std::ops::{Div, DivAssign};
6+
use core::ops::{Add, AddAssign, Div, DivAssign};
87

98
/// Represents an **Additive Monoid**.
109
///

deep_causality_sparse/BUILD.bazel

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ rust_library(
55
srcs = glob([
66
"src/**",
77
]),
8+
crate_features = [
9+
"std",
10+
],
811
crate_root = "src/lib.rs",
912
tags = [
1013
"uncertain",

0 commit comments

Comments
 (0)