Skip to content

Commit 1588c6d

Browse files
Uncomment all modules in facet-core/src/impls (WIP - has errors)
1 parent 4a907a2 commit 1588c6d

File tree

4 files changed

+33
-33
lines changed

4 files changed

+33
-33
lines changed

facet-core/src/impls/alloc/mod.rs

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
#![cfg(feature = "alloc")]
22

3-
// mod arc;
4-
// mod rc;
5-
// mod boxed;
3+
mod arc;
4+
mod boxed;
5+
mod rc;
66

7-
// mod cow;
7+
mod cow;
88

9-
// mod vec;
10-
// mod btreemap;
11-
// mod btreeset;
9+
mod btreemap;
10+
mod btreeset;
11+
mod vec;
1212

13-
// mod string;
13+
mod string;

facet-core/src/impls/core/mod.rs

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,22 +5,22 @@ mod tuple_empty;
55
mod char_str;
66
mod phantom;
77

8-
// mod nonnull;
8+
mod nonnull;
99
mod nonzero;
10-
// mod ops;
10+
mod ops;
1111
mod scalar;
12-
// mod simd;
12+
mod simd;
1313

14-
// mod array;
15-
// mod slice;
16-
// mod tuple;
14+
mod array;
15+
mod slice;
16+
mod tuple;
1717

18-
// mod pointer;
19-
// mod reference;
18+
mod pointer;
19+
mod reference;
2020

2121
mod option;
22-
// mod result;
22+
mod result;
2323

2424
mod net;
2525

26-
// mod fn_ptr;
26+
mod fn_ptr;

facet-core/src/impls/crates/mod.rs

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
// mod bytes;
2-
// mod camino;
3-
// mod chrono;
4-
// mod indexmap;
5-
// mod jiff;
6-
// mod num_complex;
7-
// mod ordered_float;
8-
// mod ruint;
9-
// mod time;
10-
// mod ulid;
11-
// mod url;
12-
// mod uuid;
1+
mod bytes;
2+
mod camino;
3+
mod chrono;
4+
mod indexmap;
5+
mod jiff;
6+
mod num_complex;
7+
mod ordered_float;
8+
mod ruint;
9+
mod time;
10+
mod ulid;
11+
mod url;
12+
mod uuid;

facet-core/src/impls/std/mod.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#![cfg(feature = "std")]
22

3-
// mod hashmap;
4-
// mod hashset;
3+
mod hashmap;
4+
mod hashset;
55

6-
// mod path;
6+
mod path;

0 commit comments

Comments
 (0)