Skip to content

Commit 1ff9575

Browse files
committed
merge
2 parents 83e6989 + af6e4d2 commit 1ff9575

File tree

410 files changed

+34105
-5255
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

410 files changed

+34105
-5255
lines changed

.cargo/config.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[env]
2+
PROJECT_NAME = "posixutils-rs"

.github/workflows/TestingCI.yml

Lines changed: 9 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -9,20 +9,19 @@ env:
99

1010
jobs:
1111
linux-ubuntu:
12-
1312
runs-on: ubuntu-latest
14-
1513
steps:
16-
- uses: actions/checkout@v4
17-
- name: Fetch
18-
run: cargo fetch
19-
- name: Build
20-
run: cargo build --release --verbose
21-
- name: Run tests
22-
run: cargo test --release --verbose
14+
- uses: actions/checkout@v4
15+
- name: Fetch
16+
run: cargo fetch
17+
- name: Build
18+
run: cargo build --release --verbose
19+
- name: Run tests
20+
run: cargo test --release --verbose
21+
- name: Run fmt check
22+
run: cargo fmt --all -- --check
2323

2424
macos-homebrew:
25-
2625
runs-on: macos-latest
2726
steps:
2827
- uses: actions/checkout@v4
@@ -46,4 +45,3 @@ jobs:
4645
run: cargo build --release --verbose
4746
- name: Run tests
4847
run: cargo test --release --verbose
49-

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ There are several ways to contribute to posixutils-rs:
4949
* Support the most widely used GNU/BSD extensions
5050
* If a system has an OS-specific feature that _must_ be
5151
exposed through a given utility, do so.
52-
* Race-free userland. `walker` crate should be able to help.
52+
* Race-free userland. See `ftw` internal crate.
5353
* Push small crates out: Create tiny, light-dep crates from common functionality (such as Lex or Yacc file parsing), and publish via cargo. Remove from main posixutils tree and set of crates.
5454

5555
### Testing and Bug Reporting: Info to provide in GH issue

0 commit comments

Comments
 (0)