This repository was archived by the owner on Jan 16, 2023. It is now read-only.
File tree 10 files changed +28
-62
lines changed
10 files changed +28
-62
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,8 @@ members = [
6
6
" conduit-router" ,
7
7
" conduit-static" ,
8
8
" conduit-test" ,
9
- " examples/*" ,
9
+ # disabled until `civet` is updated to v0.10.x
10
+ # "examples/*",
10
11
]
11
12
12
13
[patch .crates-io ]
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " conduit-conditional-get"
3
- version = " 0.9 .0"
3
+ version = " 0.10 .0"
4
4
authors = [" wycats@gmail.com" ,
5
5
" Alex Crichton <alex@alexcrichton.com>" ]
6
6
license = " MIT"
@@ -11,9 +11,9 @@ the response is fresh.
11
11
edition = " 2018"
12
12
13
13
[dependencies ]
14
- conduit = { version = " 0.9 .0" , path = " ../conduit" }
15
- conduit-middleware = { version = " 0.9 .0" , path = " ../conduit-middleware" }
14
+ conduit = { version =" 0.10 .0" , path = " ../conduit" }
15
+ conduit-middleware = { version =" 0.10 .0" , path = " ../conduit-middleware" }
16
16
time = { version = " 0.2" , default-features = false , features = [" std" ] }
17
17
18
18
[dev-dependencies ]
19
- conduit-test = { version = " 0.9 .0" , path = " ../conduit-test" }
19
+ conduit-test = { version =" 0.10 .0" , path = " ../conduit-test" }
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
3
3
name = " conduit-middleware"
4
- version = " 0.9 .0"
4
+ version = " 0.10 .0"
5
5
authors = [" wycats@gmail.com" ,
6
6
" Alex Crichton <alex@alexcrichton.com>" ]
7
7
description = " HTTP Middleware interface using the conduit interface"
@@ -10,7 +10,7 @@ license = "MIT"
10
10
edition = " 2018"
11
11
12
12
[dependencies ]
13
- conduit = { version = " 0.9 .0" , path = " ../conduit" }
13
+ conduit = { version =" 0.10 .0" , path = " ../conduit" }
14
14
15
15
[dev-dependencies ]
16
- conduit-test = { version = " 0.9 .0" , path = " ../conduit-test" }
16
+ conduit-test = { version =" 0.10 .0" , path = " ../conduit-test" }
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " conduit-router"
3
- version = " 0.9 .0"
3
+ version = " 0.10 .0"
4
4
authors = [" wycats@gmail.com" ]
5
5
license = " MIT"
6
6
description = " Router middleware for conduit based on route-recognizer"
7
7
repository = " https://github.com/conduit-rust/conduit"
8
8
edition = " 2018"
9
9
10
10
[dependencies ]
11
- conduit = { version = " 0.9 .0" , path = " ../conduit" }
11
+ conduit = { version =" 0.10 .0" , path = " ../conduit" }
12
12
route-recognizer = " 0.3"
13
13
thiserror = " 1.0.30"
14
14
tracing = " 0.1.29"
15
15
16
16
[dev-dependencies ]
17
- conduit-test = { version = " 0.9 .0" , path = " ../conduit-test" }
17
+ conduit-test = { version =" 0.10 .0" , path = " ../conduit-test" }
18
18
lazy_static = " 1.4.0"
19
19
tracing-subscriber = { version = " 0.3.1" , features = [" env-filter" ] }
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " conduit-static"
3
- version = " 0.9 .0"
3
+ version = " 0.10 .0"
4
4
authors = [" wycats@gmail.com" ,
5
5
" Alex Crichton <alex@alexcrichton.com>" ]
6
6
description = " Middleware for serving static files for conduit"
@@ -9,11 +9,11 @@ license = "MIT"
9
9
edition = " 2018"
10
10
11
11
[dependencies ]
12
- conduit = { version = " 0.9 .0" , path = " ../conduit" }
12
+ conduit = { version =" 0.10 .0" , path = " ../conduit" }
13
13
conduit-mime-types = " 0.8"
14
14
time = { version = " 0.2" , default-features = false , features = [" std" ] }
15
15
filetime = " 0.2"
16
16
17
17
[dev-dependencies ]
18
- conduit-test = { version = " 0.9 .0" , path = " ../conduit-test" }
18
+ conduit-test = { version =" 0.10 .0" , path = " ../conduit-test" }
19
19
tempdir = " 0.3"
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " conduit-test"
3
- version = " 0.9 .0"
3
+ version = " 0.10 .0"
4
4
authors = [" wycats@gmail.com" ,
5
5
" Alex Crichton <alex@alexcrichton.com>" ]
6
6
description = " Testing utilities for conduit-based stacks"
@@ -9,4 +9,4 @@ license = "MIT"
9
9
edition = " 2018"
10
10
11
11
[dependencies ]
12
- conduit = { version = " 0.9 .0" , path = " ../conduit" }
12
+ conduit = { version =" 0.10 .0" , path = " ../conduit" }
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " conduit"
3
- version = " 0.9 .0"
3
+ version = " 0.10 .0"
4
4
authors = [" wycats@gmail.com" ,
5
5
" Alex Crichton <alex@alexcrichton.com>" ]
6
6
description = " Common HTTP server interface"
Original file line number Diff line number Diff line change @@ -6,5 +6,5 @@ edition = "2018"
6
6
7
7
[dependencies ]
8
8
civet = " 0.12.0-alpha.5"
9
- conduit = { version = " 0.9 .0" , path = " ../../conduit" }
10
- conduit-router = { version = " 0.9 .0" , path = " ../../conduit-router" }
9
+ conduit = { version =" 0.10 .0" , path = " ../../conduit" }
10
+ conduit-router = { version =" 0.10 .0" , path = " ../../conduit-router" }
Original file line number Diff line number Diff line change @@ -5,5 +5,5 @@ edition = "2018"
5
5
6
6
[dependencies ]
7
7
civet = " 0.12.0-alpha.5"
8
- conduit = { version = " 0.9 .0" , path = " ../../conduit" }
9
- conduit-static = { version = " 0.9 .0" , path = " ../../conduit-static" }
8
+ conduit = { version =" 0.10 .0" , path = " ../../conduit" }
9
+ conduit-static = { version =" 0.10 .0" , path = " ../../conduit-static" }
You can’t perform that action at this time.
0 commit comments