Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
with:
command: check
format:
name: Perform various checks
name: Check code formatting
runs-on: ubuntu-latest
env:
RUSTFLAGS: "-D warnings"
Expand Down
12 changes: 3 additions & 9 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,20 +9,14 @@ repository = "https://github.com/rockstar/pidlock"
keywords = ["pidfile", "file", "filelock", "server", "lock"]
categories = ["filesystem"]
readme = "README.md"
include = [
"src/*.rs",
"Cargo.toml",
"README.md",
"LICENSE-MIT",
"LICENSE-APACHE",
]
include = ["src/*.rs", "Cargo.toml", "README.md", "LICENSE-MIT"]

[features]
default = []

[dependencies]
libc = "0.2.40"
log = { version = "0.4.1", optional = true }
libc = "0.2"
log = { version = "0.4", optional = true }
thiserror = "1.0"

[target.'cfg(windows)'.dependencies]
Expand Down
2 changes: 1 addition & 1 deletion LICENSE-MIT
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2014 The Rust Project Developers
Copyright (c) 2025 Paul Hummer

Permission is hereby granted, free of charge, to any
person obtaining a copy of this software and associated
Expand Down
Loading