File tree Expand file tree Collapse file tree 4 files changed +21
-0
lines changed Expand file tree Collapse file tree 4 files changed +21
-0
lines changed Original file line number Diff line number Diff line change @@ -32,6 +32,10 @@ They mostly consist of real-world crates.
32
32
ensure a lot of invariants. Stresses anything related to resolving
33
33
trait bounds, by having a lot of trait impls for a large number of different
34
34
types.
35
+ - ** diesel-1.4.8** : A type safe SQL query builder. Utilizes the type system to
36
+ ensure a lot of invariants. Stresses anything related to resolving
37
+ trait bounds, by having a lot of trait impls for a large number of different
38
+ types.
35
39
- ** helloworld** : A trivial program. Gives a lower bound on compile time.
36
40
- ** html5ever** : An HTML parser. Stresses macro parsing code significantly.
37
41
- ** hyper-2** : A fairly large crate. Utilizes async/await, and used by
Original file line number Diff line number Diff line change
1
+ diff --git a/src/query_dsl/mod.rs b/src/query_dsl/mod.rs
2
+ index 68c1cf74..1dcd513d 100644
3
+ --- a/src/query_dsl/mod.rs
4
+ +++ b/src/query_dsl/mod.rs
5
+ @@ -112,6 +112,7 @@ pub trait QueryDsl: Sized {
6
+ where
7
+ Self: methods::DistinctDsl,
8
+ {
9
+ + println!("testing");
10
+ methods::DistinctDsl::distinct(self)
11
+ }
12
+
Original file line number Diff line number Diff line change @@ -136,3 +136,5 @@ with-deprecated = []
136
136
x128-column-tables = [" 128-column-tables" ]
137
137
x32-column-tables = [" 32-column-tables" ]
138
138
x64-column-tables = [" 64-column-tables" ]
139
+
140
+ [workspace ]
Original file line number Diff line number Diff line change
1
+ {
2
+ "category" : " primary"
3
+ }
You can’t perform that action at this time.
0 commit comments