-
Notifications
You must be signed in to change notification settings - Fork 98
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
util: introduce libscrc as optional dependency
As discussed in #85 libscrc can increase the speed of CRC calculation. However, as it is C-based module, the usage of it is made optional to cope with the environment without Python development package.
- Loading branch information
Showing
3 changed files
with
24 additions
and
7 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
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 @@ | ||
[project] | ||
name = "scat" | ||
version = "1.0.0" | ||
version = "1.1.0" | ||
authors = [ | ||
{ name="Shinjo Park", email="[email protected]" }, | ||
] | ||
|
@@ -16,6 +16,10 @@ dependencies = [ | |
"pyusb>=1.0.2", | ||
"pyserial>=3.3" | ||
] | ||
[project.optional-dependencies] | ||
fastcrc = [ | ||
"libscrc>=1.8.0", | ||
] | ||
|
||
[project.urls] | ||
"Homepage" = "https://github.com/fgsect/scat" | ||
|
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