Skip to content

Commit

Permalink
Deref pypath to string
Browse files Browse the repository at this point in the history
  • Loading branch information
Peter554 committed Jan 5, 2025
1 parent 7c332ce commit 86756df
Show file tree
Hide file tree
Showing 10 changed files with 309 additions and 186 deletions.
48 changes: 46 additions & 2 deletions Cargo.lock

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

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ regex = "1.11.1"
lazy_static = "1.5.0"
itertools = "0.14.0"
tap = "1.0.1"
derive_more = { version = "1.0.0", features = ["full"] }

[dev-dependencies]
parameterized = "2.0.0"
Expand Down
12 changes: 6 additions & 6 deletions Taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,27 +5,27 @@ tasks:
cmds:
- cargo test

clippy.check:
check.clippy:
cmds:
- cargo clippy --all-targets -- -D warnings

clippy.fix:
fix.clippy:
cmds:
- cargo clippy --fix --allow-staged

fmt.check:
check.fmt:
cmds:
- cargo fmt --check

fmt.fix:
fix.fmt:
cmds:
- cargo fmt

check:
cmds:
- task: test
- task: clippy.check
- task: fmt.check
- task: check.clippy
- task: check.fmt

publish:
requires:
Expand Down
Loading

0 comments on commit 86756df

Please sign in to comment.