forked from aserebryakov/trie-rs
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: update release script, improve readme
- Loading branch information
Showing
4 changed files
with
22 additions
and
13 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
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 |
---|---|---|
|
@@ -5,9 +5,9 @@ authors = [ | |
"Alexander Serebryakov <[email protected]>", | ||
"Vincent Emonet <[email protected]>", | ||
] | ||
description = """Generic trie implementation with a support of different key and value types, | ||
and common prefix search.""" | ||
keywords = ["trie", "data-structures", "generic"] | ||
description = """Generic trie data structure implementation (prefix tree) with support for different key and value types, | ||
and functions to search for common prefixes or postfixes.""" | ||
keywords = ["trie", "data-structures", "generic", "prefix-tree"] | ||
categories = ["data-structures"] | ||
homepage = "https://github.com/vemonet/ptrie" | ||
repository = "https://github.com/vemonet/ptrie.git" | ||
|
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