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
13 changes: 6 additions & 7 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,6 @@ jobs:
steps:
- uses: actions/checkout@v4

- uses: actions/setup-python@v4
with:
python-version: '3.12'

- name: install rust
uses: actions-rs/toolchain@v1
with:
Expand All @@ -30,12 +26,15 @@ jobs:
- name: cache rust
uses: Swatinem/rust-cache@v1

- name: Setup PDM
uses: pdm-project/setup-pdm@v4
- name: Install uv
uses: astral-sh/setup-uv@v6
with:
enable-cache: true
python-version: '3.12'

# You are now able to use PDM in your workflow
- name: Install dependencies
run: pdm install
run: uv sync --locked --all-extras --dev

- name: Lint Rust codebase
run: make lib-lint
Expand Down
241 changes: 233 additions & 8 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "notifykit_lib"
version = "0.0.9-alpha.1"
version = "0.1.0-alpha.1"
edition = "2021"

description = "A toolkit for building applications watching filesystem changes"
Expand All @@ -21,6 +21,8 @@ notify = { version = "6.1.1"}
pyo3 = {version = "0.20.0", features = ["extension-module", "abi3-py38"]}
file-id = "0.2.1"
walkdir = "2.4.0"
pyo3-asyncio = { version = "0.20.0", features = ["tokio-runtime"] }
tokio = { version = "1.45.1", features = ["rt-multi-thread", "time", "macros", "sync"] }

[lib]
name = "_notifykit_lib"
Expand Down
Loading
Loading