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 28
28
cargo update -p proptest --precise "1.2.0" --verbose # proptest 1.3.0 requires rustc 1.64.0
29
29
cargo update -p regex --precise "1.9.6" --verbose # regex 1.10.0 requires rustc 1.65.0
30
30
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
31
32
- name : Build on Rust ${{ matrix.toolchain }}
32
33
run : cargo build --verbose --color always
33
34
- name : Check formatting
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " vss-client"
3
- version = " 0.3.0 "
3
+ version = " 0.3.1 "
4
4
rust-version = " 1.63.0"
5
5
license = " MIT OR Apache-2.0"
6
6
edition = " 2021"
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ pub use lnurl_auth_jwt::LnurlAuthToJwtProvider;
14
14
15
15
/// Defines a trait around how headers are provided for each VSS request.
16
16
#[ async_trait]
17
- pub trait VssHeaderProvider {
17
+ pub trait VssHeaderProvider : Send + Sync {
18
18
/// Returns the HTTP headers to be used for a VSS request.
19
19
/// This method is called on each request, and should likely perform some form of caching.
20
20
///
You can’t perform that action at this time.
0 commit comments