A snippet extractor for competitive programmers.
You can manage code snippet with test and bench !!
You need to install rustfmt
to run cargo-snippet
.
bash
$ rustup component add rustfmt
Install cargo-snippet
bash
$ cargo install cargo-snippet --features="binaries"
Create a project for snippet.
$ cargo new mysnippet
Add dependencies to Cargo.toml.
toml
[dependencies]
cargo-snippet = "0.5"
Add this to src/lib.rs.
Note: cargo-snippet
on dependencies is needed just for register #[snippet]
attribute to prevent error from the compiler.
All logic that extract snippet is in binary package which is installed by Installing
section.
Write some snippet codes and tests.
```rust use cargo_snippet::snippet;
// Annotate snippet name
fn gcd(a: u64, b: u64) -> u64 { if b == 0 { a } else { gcd(b, a % b) } }
// Also works
// Equivalent to #[snippet("lcm")]
fn lcm(a: u64, b: u64) -> u64 { a / gcd(a, b) * b }
// Include snippet
fn gcd_list(list: &[u64]) -> u64 { list.iter().fold(list[0], |a, &b| gcd(a, b)) }
// You can set prefix string. // Note: All codes will be formatted by rustfmt on output
fn foo() {}
fn testgcd() { asserteq!(gcd(57, 3), 3); }
fn testlcm() { asserteq!(lcm(3, 19), 57); } ```
You can test.
$ cargo test
Extract snippet !
``` $ cargo snippet snippet foo use std::io::{self, Read}; use std::str::FromStr; fn foo() {}
snippet gcd fn gcd(a: u64, b: u64) -> u64 { if b == 0 { a } else { gcd(b, a % b) } }
snippet gcdlist fn gcd(a: u64, b: u64) -> u64 { if b == 0 { a } else { gcd(b, a % b) } } fn gcdlist(list: &[u64]) -> u64 { list.iter().fold(list[0], |a, &b| gcd(a, b)) }
snippet lcm fn lcm(a: u64, b: u64) -> u64 { a / gcd(a, b) * b }
snippet mymath fn gcd(a: u64, b: u64) -> u64 { if b == 0 { a } else { gcd(b, a % b) } } 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
.