This website works better with JavaScript.
Home
Explore
Help
Register
Sign In
NGnius
/
gcmm-rust
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
Create rust lib
master
NGnius
4 years ago
parent
49768cef17
commit
ec2aec0267
3 changed files
with
22 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+6
-0
.gitignore
+9
-0
Cargo.toml
+7
-0
src/lib.rs
+ 6
- 0
.gitignore
View File
@@ -12,3 +12,9 @@
# Output of the go coverage tool, specifically when used with LiteIDE
*.out
#Added by cargo
/target
Cargo.lock
+ 9
- 0
Cargo.toml
View File
@@ -0,0 +1,9 @@
[package]
name = "gcmm"
version = "0.1.0"
authors = ["NGnius <ngniusness@gmail.com>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
+ 7
- 0
src/lib.rs
View File
@@ -0,0 +1,7 @@
#[cfg(test)]
mod tests {
#[test]
fn it_works() {
assert_eq!(2 + 2, 4);
}
}