Skip to content

Commit

Permalink
Merge pull request #91 from Manishearth/msrv
Browse files Browse the repository at this point in the history
Add MSRV
  • Loading branch information
Manishearth committed Jun 5, 2024
2 parents 4a778df + 376ce66 commit c45151e
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,12 @@ jobs:
build:

runs-on: ubuntu-latest

strategy:
matrix:
rust:
- stable
- 1.76
- nightly
steps:
- uses: actions/checkout@v4
- name: Build
Expand Down
7 changes: 5 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
[package]
name = "triomphe"
version = "0.1.11"
authors = ["The Servo Project Developers"]
version = "0.1.12"
authors = ["Manish Goregaokar <manishsmail@gmail.com>", "The Servo Project Developers"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/Manishearth/triomphe"
description = "A fork of std::sync::Arc with some extra functionality and without weak references (originally servo_arc)"
keywords = ["arc", "ffi", "sync", "data-structure"]
categories = ["concurrency", "data-structures"]

# MSRV policy: May be updated in minor versions
rust-version = "1.76"

[features]
std = []
default = ["serde", "stable_deref_trait", "std"]
Expand Down

0 comments on commit c45151e

Please sign in to comment.