Skip to content

Commit f5691af

Browse files
committed
Initialize minimal Rust library build environment
1 parent 5e0bfa8 commit f5691af

File tree

3 files changed

+19
-0
lines changed

3 files changed

+19
-0
lines changed

Cargo.lock

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
[package]
2+
name = "vim-pandoc-syntax"
3+
version = "0.0.0"
4+
authors = ["Caleb Maclennan <[email protected]>"]
5+
edition = "2018"
6+
7+
[dependencies]

src/lib.rs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#[cfg(test)]
2+
mod tests {
3+
#[test]
4+
fn it_works() {
5+
assert_eq!(2 + 2, 4);
6+
}
7+
}

0 commit comments

Comments
 (0)