File tree Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 2828 cargo update -p proptest --precise "1.2.0" --verbose # proptest 1.3.0 requires rustc 1.64.0
2929 cargo update -p regex --precise "1.9.6" --verbose # regex 1.10.0 requires rustc 1.65.0
3030 cargo update -p tokio --precise "1.38.1" --verbose # tokio v1.39.0 requires rustc 1.70 or newer
31+ cargo update -p tokio-util --precise "0.7.11" --verbose # tokio-util v0.7.12 requires rustc 1.70 or newer
3132 - name : Build on Rust ${{ matrix.toolchain }}
3233 run : cargo build --verbose --color always
3334 - name : Check formatting
Original file line number Diff line number Diff line change 11[package ]
22name = " vss-client"
3- version = " 0.3.0 "
3+ version = " 0.3.1 "
44rust-version = " 1.63.0"
55license = " MIT OR Apache-2.0"
66edition = " 2021"
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ pub use lnurl_auth_jwt::LnurlAuthToJwtProvider;
1414
1515/// Defines a trait around how headers are provided for each VSS request.
1616#[ async_trait]
17- pub trait VssHeaderProvider {
17+ pub trait VssHeaderProvider : Send + Sync {
1818 /// Returns the HTTP headers to be used for a VSS request.
1919 /// This method is called on each request, and should likely perform some form of caching.
2020 ///
You can’t perform that action at this time.
0 commit comments