-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Clean slate with Winnow 2 #86
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,20 @@ | ||
[package] | ||
name = "parse_datetime" | ||
description = "parsing human-readable time strings and converting them to a DateTime" | ||
version = "0.6.0" | ||
version = "0.7.0" | ||
edition = "2021" | ||
license = "MIT" | ||
repository = "https://github.com/uutils/parse_datetime" | ||
readme = "README.md" | ||
|
||
[dependencies] | ||
regex = "1.10.4" | ||
chrono = { version="0.4.38", default-features=false, features=["std", "alloc", "clock"] } | ||
nom = "7.1.3" | ||
chrono = { version="0.4", default-features=false, features=["std", "alloc", "clock"] } | ||
num-traits = "0.2.19" | ||
winnow = { version="0.5.34"} | ||
|
||
[dev-dependencies] | ||
anyhow = "1.0.86" | ||
#winnow = { version="0.5.34", features = ["debug"] } | ||
|
||
[features] | ||
debug = ["winnow/debug"] |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,6 +15,9 @@ chrono = { version="0.4", default-features=false, features=["std", "alloc", "clo | |
[dependencies.parse_datetime] | ||
path = "../" | ||
|
||
[features] | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. same, why in this PR ? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. To see the trace output I need build it with winnow/debug/ feature. I tried |
||
debug = ["parse_datetime/debug"] | ||
|
||
[[bin]] | ||
name = "fuzz_parse_datetime" | ||
path = "fuzz_targets/parse_datetime.rs" | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the api didn't change?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh, this was before recreating the parse_datetime function, I'm restoring it to 6
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Okay, I setting this to
0.7.0
. The API didn't change, for one minute I found that0.6.1
was the right version, but this is not a simple bugfix so I think0.7.0
is the correct choice.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this is fine, i was just curious :)