Skip to content

Commit

Permalink
πŸ“Œ Use pest instead of parse-wiki-text-2.
Browse files Browse the repository at this point in the history
The maintenance of this library is so unstable that I can only consider writing my own parser.
  • Loading branch information
langyo committed Nov 24, 2024
1 parent 7740bdb commit 6a22dbe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/components/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ yew-router = { workspace = true }

html5ever = { version = "^0.29", optional = true }
markdown = { version = "1.0.0-alpha.21", optional = true }
parse-wiki-text-2 = { version = "^0.2", optional = true }
pest = { version = "^2", optional = true }

egui = { version = "^0.29", optional = true }
bevy = { version = "^0.14", optional = true }
Expand All @@ -57,7 +57,7 @@ form-input-rich = [
]
form-input-rich-html = ["dep:html5ever"]
form-input-rich-markdown = ["dep:markdown"]
form-input-rich-mediawiki = ["dep:parse-wiki-text-2"]
form-input-rich-mediawiki = ["dep:pest"]

data-canvas = ["data-canvas-charts", "data-canvas-scene"]
data-canvas-charts = ["dep:egui"]
Expand Down

0 comments on commit 6a22dbe

Please sign in to comment.