Skip to content

Commit 3d81cd9

Browse files
committed
fix ci semver compat, 1.59, enable in branches
The MSRV need to be bumped to 1.59 because of some language syntax we use.
1 parent 8606c1f commit 3d81cd9

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
name: Rust
22

33
on:
4-
push:
5-
branches: [ main, master ]
4+
push: { } # Since the primary repo has no CI, every fork must do the CI work in every branch
5+
# push:
6+
# branches: [ main, master ]
67
pull_request:
78
branches: [ main, master ]
89
release:

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ categories = ["compression", "no-std"]
1212
readme = "README.md"
1313
autobins = false
1414
edition = "2015"
15-
rust-version = "1.56.0"
15+
rust-version = "1.59.0"
1616

1717
[[bin]]
1818
doc = false

src/enc/mod.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,10 @@ mod weights;
4343
pub mod worker_pool;
4444
pub mod writer;
4545

46+
// FIXME: Remove this in 7.0
47+
#[deprecated(note = "Leaving this here to avoid breaking 6.0 compatibility.")]
48+
pub mod fast_log {}
49+
4650
pub use alloc::{AllocatedStackMemory, Allocator, SliceWrapper, SliceWrapperMut, StackAllocator};
4751
#[cfg(feature = "std")]
4852
use std::io;

0 commit comments

Comments
 (0)