Skip to content

Commit b8daf7f

Browse files
authored
Merge branch 'rust-fuzz:main' into no_std_support
2 parents cca2693 + 341a8fd commit b8daf7f

2 files changed

Lines changed: 9 additions & 0 deletions

File tree

.github/workflows/rust.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,14 @@ jobs:
3131
steps:
3232
- uses: actions/checkout@v3
3333
- run: rustup toolchain add 1.63
34+
- name: Downgrade unicode-ident
35+
run: cargo update --package unicode-ident --precise 1.0.22
36+
- name: Downgrade syn
37+
run: cargo update --package syn --precise 2.0.106
38+
- name: Downgrade quote
39+
run: cargo update --package quote --precise 1.0.41
40+
- name: Downgrade proc-macro2
41+
run: cargo update --package proc-macro2 --precise 1.0.103
3442
- name: Build
3543
run: cargo +1.63 check --lib --all-features
3644
clippy:

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ license = "MIT OR Apache-2.0"
1818
repository = "https://github.com/rust-fuzz/arbitrary/"
1919
documentation = "https://docs.rs/arbitrary/"
2020
rust-version = "1.63.0" # Keep in sync with version documented in the README.md
21+
include = ["Cargo.toml", "CHANGELOG.md", "LICENSE-MIT", "LICENSE-APACHE", "README.md", "src/**/*.rs", "tests/**/*.rs", "examples/**/*.rs"]
2122

2223
[dependencies]
2324
derive_arbitrary = { version = "~1.4.0", path = "./derive", optional = true }

0 commit comments

Comments
 (0)