Skip to content

Commit 15691ec

Browse files
authored
Modernize lazy-static infra (#219)
1 parent 2660041 commit 15691ec

19 files changed

+178
-194
lines changed

.github/workflows/rust.yml

+60
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
name: Rust
2+
3+
on: [push, pull_request]
4+
5+
env:
6+
CARGO_TERM_COLOR: always
7+
8+
permissions:
9+
contents: read
10+
11+
jobs:
12+
check:
13+
name: "Tests"
14+
runs-on: ubuntu-latest
15+
strategy:
16+
matrix:
17+
channel:
18+
- stable
19+
- beta
20+
- nightly
21+
22+
steps:
23+
- name: Checkout repository
24+
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab
25+
26+
- name: Install Rust Toolchain
27+
run: rustup default ${{ matrix.channel }}
28+
29+
- name: Install cargo-hack
30+
run: cargo install cargo-hack
31+
32+
- name: Powerset
33+
run: cargo hack test --feature-powerset --lib
34+
35+
miri:
36+
name: "Miri"
37+
runs-on: ubuntu-latest
38+
steps:
39+
- uses: actions/checkout@v3
40+
- name: Install Miri
41+
run: |
42+
rustup toolchain install nightly --component miri
43+
cargo +nightly miri setup
44+
- name: Default features
45+
run: cargo +nightly miri test
46+
47+
embedded:
48+
name: Build (embedded)
49+
runs-on: ubuntu-latest
50+
steps:
51+
- name: Checkout sources
52+
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab
53+
54+
- name: Install Rust toolchain
55+
run: |
56+
rustup default nightly
57+
rustup target add thumbv7em-none-eabi
58+
59+
- name: Default features
60+
run: cargo build -Z avoid-dev-deps --features spin_no_std --target thumbv7em-none-eabi

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@ target
22
doc
33
Cargo.lock
44
.cargo
5+
wip

.travis.yml

-36
This file was deleted.

Cargo.toml

+3-11
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ documentation = "https://docs.rs/lazy_static"
1212
repository = "https://github.com/rust-lang-nursery/lazy-static.rs"
1313
keywords = ["macro", "lazy", "static"]
1414
categories = [ "no-std", "rust-patterns", "memory-management" ]
15-
exclude = ["/.travis.yml", "/appveyor.yml"]
15+
exclude = [".github"]
1616

1717
[dependencies.spin]
18-
version = "0.9.3"
18+
version = "0.9.8"
1919
default-features = false
2020
features = ["once"]
2121
optional = true
@@ -25,12 +25,4 @@ spin_no_std = ["spin"]
2525

2626
[dev-dependencies]
2727
doc-comment = "0.3.1"
28-
29-
[badges]
30-
appveyor = { repository = "rust-lang-nursery/lazy-static.rs" }
31-
travis-ci = { repository = "rust-lang-nursery/lazy-static.rs" }
32-
33-
is-it-maintained-issue-resolution = { repository = "rust-lang-nursery/lazy-static.rs" }
34-
is-it-maintained-open-issues = { repository = "rust-lang-nursery/lazy-static.rs" }
35-
36-
maintenance = { status = "passively-maintained" }
28+
trybuild = "1"

appveyor.yml

-61
This file was deleted.

compiletest/Cargo.toml

-11
This file was deleted.

compiletest/src/lib.rs

-11
This file was deleted.

compiletest/tests/compile-fail/README.md

-22
This file was deleted.

compiletest/tests/compile-fail/incorrect_visibility_restriction.rs

-10
This file was deleted.

compiletest/tests/compile-fail/static_is_sized.rs

-11
This file was deleted.

compiletest/tests/compile_tests.rs

-19
This file was deleted.

src/inline_lazy.rs

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ use self::std::sync::Once;
1515
#[allow(deprecated)]
1616
pub use self::std::sync::ONCE_INIT;
1717

18+
#[allow(dead_code)] // Used in macros
1819
pub struct Lazy<T: Sync>(Cell<MaybeUninit<T>>, Once);
1920

2021
impl<T: Sync> Lazy<T> {
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
#[macro_use]
2+
extern crate lazy_static;
3+
4+
lazy_static! {
5+
pub(nonsense) static ref WRONG: () = ();
6+
}
7+
8+
fn main() { }
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
error[E0704]: incorrect visibility restriction
2+
--> tests/compile_fail/incorrect_visibility_restriction.rs:5:9
3+
|
4+
5 | pub(nonsense) static ref WRONG: () = ();
5+
| ^^^^^^^^ help: make this visible only to module `nonsense` with `in`: `in nonsense`
6+
|
7+
= help: some possible visibility restrictions are:
8+
`pub(crate)`: visible only on the current crate
9+
`pub(super)`: visible only in the current module's parent
10+
`pub(in path::to::module)`: visible only on the specified path

compiletest/tests/compile-fail/static_is_private.rs tests/compile_fail/static_is_private.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#[macro_use]
2-
extern crate lazy_static_compiletest as lazy_static;
2+
extern crate lazy_static;
33

44
mod outer {
55
pub mod inner {
@@ -10,5 +10,5 @@ mod outer {
1010
}
1111

1212
fn main() {
13-
assert_eq!(*outer::inner::FOO, ()); //~ ERROR static `FOO` is private
13+
assert_eq!(*outer::inner::FOO, ());
1414
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
error[E0603]: static `FOO` is private
2+
--> tests/compile_fail/static_is_private.rs:13:31
3+
|
4+
13 | assert_eq!(*outer::inner::FOO, ());
5+
| ^^^ private static
6+
|
7+
note: the static `FOO` is defined here
8+
--> tests/compile_fail/static_is_private.rs:6:9
9+
|
10+
6 | / lazy_static! {
11+
7 | | pub(in outer) static ref FOO: () = ();
12+
8 | | }
13+
| |_________^
14+
= note: this error originates in the macro `lazy_static` (in Nightly builds, run with -Z macro-backtrace for more info)

tests/compile_fail/static_is_sized.rs

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#[macro_use]
2+
extern crate lazy_static;
3+
4+
lazy_static! {
5+
pub static ref FOO: str = panic!();
6+
}
7+
8+
9+
fn main() { }

0 commit comments

Comments
 (0)