File tree Expand file tree Collapse file tree 4 files changed +82
-94
lines changed Expand file tree Collapse file tree 4 files changed +82
-94
lines changed Original file line number Diff line number Diff line change @@ -44,7 +44,8 @@ git = "https://github.com/conduit-rust/conduit-middleware"
44
44
git = " https://github.com/conduit-rust/conduit-cookie"
45
45
46
46
[dependencies .postgres ]
47
- git = " https://github.com/sfackler/rust-postgres"
47
+ git = " https://github.com/alexcrichton/rust-postgres"
48
+ branch = " git-deps"
48
49
49
50
[dependencies .html ]
50
51
path = " src/html"
@@ -83,16 +84,17 @@ git = "https://github.com/rust-lang/semver"
83
84
git = " https://github.com/servo/rust-url"
84
85
85
86
[dependencies .r2d2_postgres ]
86
- git = " https://github.com/sfackler/r2d2-postgres"
87
+ git = " https://github.com/alexcrichton/r2d2-postgres"
88
+ branch = " git-deps"
87
89
88
90
[dependencies .git2 ]
89
91
git = " https://github.com/alexcrichton/git2-rs"
90
92
91
93
[dependencies .openssl ]
92
94
git = " https://github.com/sfackler/rust-openssl"
93
95
94
- [dependencies ]
95
- time = " * "
96
+ [dependencies . time ]
97
+ git = " https://github.com/rust-lang/time "
96
98
97
99
[dev-dependencies .conduit-test ]
98
100
git = " https://github.com/conduit-rust/conduit-test"
Original file line number Diff line number Diff line change @@ -8,4 +8,5 @@ name = "migrate"
8
8
path = " lib.rs"
9
9
10
10
[dependencies .postgres ]
11
- git = " https://github.com/sfackler/rust-postgres"
11
+ git = " https://github.com/alexcrichton/rust-postgres"
12
+ branch = " git-deps"
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ impl<R: Reader> HashingReader<R> {
11
11
HashingReader { inner : r, hasher : Hasher :: new ( SHA256 ) }
12
12
}
13
13
14
- pub fn finalize ( & self ) -> Vec < u8 > { self . hasher . finalize ( ) }
14
+ pub fn finalize ( self ) -> Vec < u8 > { self . hasher . finalize ( ) }
15
15
}
16
16
17
17
impl < R : Reader > Reader for HashingReader < R > {
You can’t perform that action at this time.
0 commit comments