Skip to content

Commit 98bc4e4

Browse files
committed
contrib: skip MSRV for nostr-sqldb
Signed-off-by: Yuki Kishimoto <[email protected]>
1 parent 250103f commit 98bc4e4

File tree

1 file changed

+13
-10
lines changed

1 file changed

+13
-10
lines changed

contrib/scripts/check-crates.sh

Lines changed: 13 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -64,16 +64,19 @@ buildargs=(
6464
)
6565

6666
skip_msrv=(
67-
"-p nostr-lmdb" # MSRV: 1.72.0
68-
"-p nostr-mls-storage" # MSRV: 1.74.0
69-
"-p nostr-mls-memory-storage" # MSRV: 1.74.0
70-
"-p nostr-mls-sqlite-storage" # MSRV: 1.74.0
71-
"-p nostr-mls" # MSRV: 1.74.0
72-
"-p nostr-keyring" # MSRV: 1.75.0
73-
"-p nostr-keyring --features async" # MSRV: 1.75.0
74-
"-p nostr-sdk --features tor" # MSRV: 1.77.0
75-
"-p nostr-sdk --all-features" # MSRV: 1.77.0 (since uses lmdb and tor)
76-
"-p nostr-cli" # MSRV: 1.74.0
67+
"-p nostr-lmdb" # MSRV: 1.72.0
68+
"-p nostr-mls-storage" # MSRV: 1.74.0
69+
"-p nostr-mls-memory-storage" # MSRV: 1.74.0
70+
"-p nostr-mls-sqlite-storage" # MSRV: 1.74.0
71+
"-p nostr-mls" # MSRV: 1.74.0
72+
"-p nostr-sqldb --no-default-features --features postgres" # MSRV: 1.82.0
73+
"-p nostr-sqldb --no-default-features --features mysql" # MSRV: 1.82.0
74+
"-p nostr-sqldb --no-default-features --features sqlite" # MSRV: 1.82.0
75+
"-p nostr-keyring" # MSRV: 1.75.0
76+
"-p nostr-keyring --features async" # MSRV: 1.75.0
77+
"-p nostr-sdk --features tor" # MSRV: 1.77.0
78+
"-p nostr-sdk --all-features" # MSRV: 1.77.0 (since uses lmdb and tor)
79+
"-p nostr-cli" # MSRV: 1.74.0
7780
)
7881

7982
for arg in "${buildargs[@]}";

0 commit comments

Comments
 (0)