-
Notifications
You must be signed in to change notification settings - Fork 29
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 #151 from jugglerchris/css_parser
Replace the CSS parser and update for an alpha release.
- Loading branch information
Showing
7 changed files
with
1,225 additions
and
355 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 @@ | ||
[package] | ||
name = "html2text" | ||
version = "0.12.5" | ||
version = "0.13.0-alpha.0" | ||
authors = ["Chris Emerson <[email protected]>"] | ||
description = "Render HTML as plain text." | ||
repository = "https://github.com/jugglerchris/rust-html2text/" | ||
|
@@ -20,16 +20,14 @@ tendril = "0.4" | |
unicode-width = "0.1.5" | ||
backtrace = { version = "0.3", optional=true } | ||
thiserror = "1.0.50" | ||
lightningcss = { version = "1.0.0-alpha.54", optional=true } | ||
# Keep dashmap back; 5.5 has a higher MSRV. | ||
dashmap = { version = "~5.4", optional=true } | ||
log = { version = "0.4.20", optional = true } | ||
nom = "7.1.3" | ||
|
||
[features] | ||
html_trace = ["dep:log"] | ||
html_trace_bt = ["html_trace", "dep:backtrace"] | ||
default = [] | ||
css = ["dep:lightningcss"] | ||
css = [] | ||
|
||
[[example]] | ||
name = "html2term" | ||
|
Oops, something went wrong.