File tree Expand file tree Collapse file tree 3 files changed +10
-9
lines changed Expand file tree Collapse file tree 3 files changed +10
-9
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ repository = "https://github.com/semiotic-ai/timeline-aggregation-protocol"
1212alloy = { version = " 0.4.2" , features = [" full" ] }
1313serde = { version = " 1.0.163" , features = [" derive" ] }
1414rstest = " 0.22.0"
15- anyhow = { version = " 1.0.70 " , default-features = false }
15+ anyhow = { version = " 1.0.89 " }
1616tokio = { version = " 1.40.0" , features = [" macros" , " signal" ] }
1717rand = " 0.8.5"
18- jsonrpsee = { version = " 0.18.0 " , features = [" macros" , " server" ] }
18+ jsonrpsee = { version = " 0.24.7 " , features = [" macros" , " server" ] }
Original file line number Diff line number Diff line change @@ -25,16 +25,17 @@ tracing-subscriber = "0.3.17"
2525log = " 0.4.19"
2626prometheus = " 0.13.3"
2727axum = { version = " 0.7.5" , features = [
28- " http1" ,
29- " json" ,
30- " matched-path" ,
31- " original-uri" ,
32- " query" ,
33- " tokio" ,
28+ " http1" ,
29+ " json" ,
30+ " matched-path" ,
31+ " original-uri" ,
32+ " query" ,
33+ " tokio" ,
3434], default-features = false }
3535futures-util = " 0.3.28"
3636lazy_static = " 1.4.0"
3737ruint = " 1.10.1"
38+ tower = { version = " 0.4" , features = [" util" ] }
3839
3940[dev-dependencies ]
4041jsonrpsee = { workspace = true , features = [" http-client" , " jsonrpsee-core" ] }
Original file line number Diff line number Diff line change @@ -233,7 +233,7 @@ pub async fn run_server(
233233 accepted_addresses,
234234 domain_separator,
235235 } ;
236- let handle = server. start ( rpc_impl. into_rpc ( ) ) ? ;
236+ let handle = server. start ( rpc_impl. into_rpc ( ) ) ;
237237 Ok ( ( handle, addr) )
238238}
239239
You can’t perform that action at this time.
0 commit comments