Crates.io | mdx |
lib.rs | mdx |
version | 0.0.4 |
source | src |
created_at | 2020-02-27 20:39:58.10375 |
updated_at | 2021-01-03 00:40:00.424257 |
description | MDX implementation in Rust |
homepage | https://mdxjs.com/ |
repository | |
max_upload_size | |
id | 213245 |
size | 189,126 |
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.
You must have Rust installed. You probably want rustup.
cargo build
cargo build --release
cargo test
cargo bench
what files matter where
tests against the public package API, and the public API only.
tests/
testing internals and such in a small way.
src/*.rs
Can we be speedy? how speedy? Did a recent change cause a regression?
benches/mdx_benchmark.rs
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.