- Notifications
You must be signed in to change notification settings - Fork4
mdx-js/rust
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
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 wantrustup.
cargo buildcargo build --releasecargotestcargo bench
what files matter where
tests against the public package API, and the public API only.
- in
tests/
testing internals and such in a small way.
- in
src/*.rs
Can we be speedy? how speedy? Did a recent change cause a regression?
- in
benches/mdx_benchmark.rs
I have a println/dgb/etc in my test and I'm not seeing the output
Usecargo test -- --nocapture
to show output in tests. cargo swallows the output by default.