A snippet extractor for competitive programmers.
You can manage code snippet with test and bench !!
You need nightly rust.
$ cargo install cargo-snippet --features="binaries"
Create a project for snippet.
$ cargo new mysnippet
Add dependencies to Cargo.toml.
toml
[dependencies]
cargo-snippet = "0.1"
Add this to src/lib.rs.
```rust
```
Write some snippet codes and tests.
```rust
// Annotate snippet name
fn gcd(a: u64, b: u64) -> u64 { if b == 0 { a } else { gcd(b, a % b) } }
// Also works
fn lcm(a: u64, b: u64) -> u64 { a / gcd(a, b) * b }
fn testgcd() { asserteq!(gcd(57, 3), 3); }
fn testlcm() { asserteq!(lcm(3, 19), 57); } ```
You can test.
$ cargo test
Extract snippet !
``` $ cargo snippet snippet gcd #[allow(dead_code)] fn gcd(a: u64, b: u64) -> u64 { if b == 0 { a } else { gcd(b, a % b) } }
snippet mymath #[allow(deadcode)] fn gcd(a: u64, b: u64) -> u64 { if b == 0 { a } else { gcd(b, a % b) } } #[allow(deadcode)] fn lcm(a: u64, b: u64) -> u64 { a / gcd(a, b) * b } ```
My snippets here.
You can specify output format via -t
option.
See cargo snippet -h
.