-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1f8976b
commit 5781ba7
Showing
3 changed files
with
18 additions
and
4 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 |
---|---|---|
|
@@ -3,8 +3,13 @@ name = "tinystr" | |
description = """ | ||
A small ASCII-only bounded length string representation. | ||
""" | ||
version = "0.4.2" | ||
authors = ["Raph Levien <[email protected]>", "Zibi Braniecki <[email protected]>", "Shane F. Carr <[email protected]>"] | ||
version = "0.4.3" | ||
authors = [ | ||
"Raph Levien <[email protected]>", | ||
"Zibi Braniecki <[email protected]>", | ||
"Shane F. Carr <[email protected]>", | ||
"Manish Goregaokar <[email protected]>" | ||
] | ||
edition = "2018" | ||
license = "Apache-2.0/MIT" | ||
repository = "https://github.com/zbraniecki/tinystr" | ||
|
@@ -15,7 +20,7 @@ categories = ["data-structures"] | |
[dependencies] | ||
serde = { version = "1.0.123", optional = true } | ||
tinystr-macros = { version = "0.2", path = "./macros" } | ||
tinystr-raw = { version = "0.1", path = "./raw" } | ||
tinystr-raw = { version = "0.1.1", path = "./raw" } | ||
|
||
[dev-dependencies] | ||
criterion = "0.3" | ||
|
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 |
---|---|---|
|
@@ -3,7 +3,7 @@ name = "tinystr-raw" | |
description = """ | ||
Raw string-to-integer conversions for tinystr. | ||
""" | ||
version = "0.1.0" | ||
version = "0.1.1" | ||
authors = ["Zibi Braniecki <[email protected]>", "Shane F. Carr <[email protected]>"] | ||
edition = "2018" | ||
license = "Apache-2.0/MIT" | ||
|