-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #90 from G-Research/85-3.12-support
Newer PyO3, newer Rust, initial prep for next release
- Loading branch information
Showing
4 changed files
with
31 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "ahocorasick_rs" | ||
version = "0.19.0" | ||
version = "0.20.0" | ||
edition = "2021" | ||
authors = ["G-Research <[email protected]>", "Itamar Turner-Trauring <[email protected]>"] | ||
description = "Search a string for multiple substrings at once" | ||
|
@@ -16,7 +16,7 @@ crate-type = ["cdylib"] | |
[dependencies] | ||
aho-corasick = "1.0" | ||
itertools = "0.11.0" | ||
pyo3 = "0.19" | ||
pyo3 = "0.20" | ||
|
||
[features] | ||
# The extension-module song and dance is explained here: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
[toolchain] | ||
channel = "1.72.1" | ||
channel = "1.73" | ||
components = ["rustfmt", "clippy"] |