aboutsummaryrefslogtreecommitdiffstats
path: root/Cargo.toml (unfollow)
Commit message (Collapse)AuthorFilesLines
2023-07-101.0.0-alpha.11Libravatar Titus Wormer1-1/+1
2023-06-131.0.0-alpha.10Libravatar Titus Wormer1-1/+1
2023-06-13Update dev-dependenciesLibravatar Titus Wormer1-2/+2
2023-04-271.0.0-alpha.9Libravatar Titus Wormer1-1/+1
2023-04-27Rename `json` feature to `serde`Libravatar Rafael Bachmann1-2/+2
Closes GH-59. Reviewed-by: Titus Wormer <tituswormer@gmail.com>
2023-04-221.0.0-alpha.8Libravatar Titus Wormer1-1/+1
2023-04-22Update dev-dependenciesLibravatar Titus Wormer1-1/+1
2023-02-101.0.0-alpha.7Libravatar Titus Wormer1-1/+1
2023-02-10Add `log` feature, document featuresLibravatar Titus Wormer1-0/+1
2023-02-10Move `log` to optional dependenciesLibravatar pinkforest(she/her)1-1/+1
Closes GH-48.
2023-02-06Remove `json` from default featuresLibravatar pinkforest(she/her)1-1/+1
Closes GH-47. Closes GH-49. Reviewed-by: Titus Wormer <tituswormer@gmail.com>
2023-02-06Fix to add `features: 'derive'` for serdeLibravatar Kyle McCarthy1-1/+1
Related-to: GH-10. Related-to: GH-30. Related-to: GH-37. Closes GH-44. Closes GH-45. Reviewed-by: Titus Wormer <tituswormer@gmail.com>
2023-01-311.0.0-alpha.6Libravatar Titus Wormer1-1/+1
2023-01-31Update dev-dependenciesLibravatar Titus Wormer1-1/+1
2023-01-03Add support for serializing trees as JSONLibravatar Kyle McCarthy1-0/+6
This adds support for serializing the mdast syntax tree as JSON, with serde, through a feature. Closes GH-10. Related-to GH-30. Closes GH-37.
2022-12-131.0.0-alpha.5Libravatar Titus Wormer1-1/+1
2022-12-13Update dev-dependenciesLibravatar Titus Wormer1-1/+1
2022-12-13Replace build script with private crateLibravatar Titus Wormer1-5/+2
Closes GH-34. Closes GH-35.
2022-11-251.0.0-alpha.4Libravatar Titus Wormer1-1/+1
2022-11-25Update dev-dependencyLibravatar Titus Wormer1-1/+1
2022-11-25Remove unneeded testsLibravatar Titus Wormer1-6/+6
2022-10-261.0.0-alpha.3Libravatar Titus Wormer1-1/+1
2022-10-251.0.0-alpha.2Libravatar Titus Wormer1-1/+1
2022-10-14Update description in `Cargo.toml`Libravatar Titus Wormer1-1/+1
2022-10-141.0.0-alpha.1Libravatar Titus Wormer1-1/+1
2022-10-14Add `path` to bench in `Cargo.toml`Libravatar Titus Wormer1-0/+1
2022-10-14Remove `publish: false` from `Cargo.toml`Libravatar Titus Wormer1-1/+0
2022-10-13Rename crate to `markdown`Libravatar Titus Wormer1-3/+3
2022-10-12Add internals to compile JSX away (wip)Libravatar Titus Wormer1-0/+1
2022-10-05Add support for rewriting JSXLibravatar Titus Wormer1-1/+2
2022-09-30Add support for turning hast into swcLibravatar Titus Wormer1-0/+1
2022-09-29Update dev-dependenciesLibravatar Titus Wormer1-3/+3
2022-09-19Add support for parsing MDX ESM, expressionsLibravatar Titus Wormer1-1/+4
This commit adds support for hooks that lets a user integrate another parser with `micromark-rs`, to parse ESM and expressions according to a particular grammar (such as a programming language, typically JavaScript). For an example integrating with SWC, see `tests/test_utils/mod.rs`. The integration occurs with two functions passed in `options`: `mdx_expression_parse` and `mdx_esm_parse`. The can signal back to micromark when they are successful, whether there is an error at the end (in which case micromark will try to parse more), or whether there is a syntax error (in which case micromark will crash).
2022-09-07Add support for unicode identifiers in JSXLibravatar Titus Wormer1-0/+2
2022-08-19Refactor to loosen ranges in `Cargo.toml`Libravatar Titus Wormer1-3/+3
2022-08-18Add `pretty_assertions` to tests for diffsLibravatar Titus Wormer1-0/+1
2022-07-26Fix misclassified dependencyLibravatar Titus Wormer1-1/+1
2022-07-18Add a benchmarkLibravatar Titus Wormer1-0/+7
2022-07-15Add all commonmark testsLibravatar Titus Wormer1-0/+1
2022-07-04Use Rust to crawl unicodeLibravatar Titus Wormer1-2/+6