Skip to content

Commit

Permalink
fix ci semver compat, 1.59, enable in branches
Browse files Browse the repository at this point in the history
The MSRV need to be bumped to 1.59 because of some language syntax we
use.
  • Loading branch information
nyurik committed May 21, 2024
1 parent 8606c1f commit 3d81cd9
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
name: Rust

on:
push:
branches: [ main, master ]
push: { } # Since the primary repo has no CI, every fork must do the CI work in every branch
# push:
# branches: [ main, master ]
pull_request:
branches: [ main, master ]
release:
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ categories = ["compression", "no-std"]
readme = "README.md"
autobins = false
edition = "2015"
rust-version = "1.56.0"
rust-version = "1.59.0"

[[bin]]
doc = false
Expand Down
4 changes: 4 additions & 0 deletions src/enc/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,10 @@ mod weights;
pub mod worker_pool;
pub mod writer;

// FIXME: Remove this in 7.0
#[deprecated(note = "Leaving this here to avoid breaking 6.0 compatibility.")]
pub mod fast_log {}

pub use alloc::{AllocatedStackMemory, Allocator, SliceWrapper, SliceWrapperMut, StackAllocator};
#[cfg(feature = "std")]
use std::io;
Expand Down

0 comments on commit 3d81cd9

Please sign in to comment.