mdx

Crates.iomdx
lib.rsmdx
version0.0.4
sourcesrc
created_at2020-02-27 20:39:58.10375
updated_at2021-01-03 00:40:00.424257
descriptionMDX implementation in Rust
homepagehttps://mdxjs.com/
repository
max_upload_size
id213245
size189,126
Christopher Biscardi (ChristopherBiscardi)

documentation

README

MDX

Rust implementation of MDX

I found this repo, should I use this?

no.

I'm going to anyway

ok, we look forward to working with you.

Developing

You must have Rust installed. You probably want rustup.

Command Cheatsheet:

cargo build
cargo build --release
cargo test
cargo bench

repo organization

what files matter where

integrations tests

tests against the public package API, and the public API only.

  • in tests/

unit tests

testing internals and such in a small way.

  • in src/*.rs

benchmark tests

Can we be speedy? how speedy? Did a recent change cause a regression?

  • in benches/mdx_benchmark.rs

Troubleshooting

I have a println/dgb/etc in my test and I'm not seeing the output

Use cargo test -- --nocapture to show output in tests. cargo swallows the output by default.

Commit count: 0

cargo fmt