master
brnrs 5 years ago
parent 45c8d18b5d
commit ce30e674b8
  1. 8
      .gitignore
  2. 9
      Cargo.toml
  3. 2
      LICENSE
  4. 7
      src/lib.rs

8
.gitignore vendored

@ -10,3 +10,11 @@ Cargo.lock
# These are backup files generated by rustfmt # These are backup files generated by rustfmt
**/*.rs.bk **/*.rs.bk
#Added by cargo
#
#already existing elements were commented out
/target
#Cargo.lock

@ -0,0 +1,9 @@
[package]
name = "eventear"
version = "0.1.0"
authors = ["brnrs <brnrs@brnrs.pl>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

@ -1,4 +1,4 @@
MIT License Copyright (c) <year> <copyright holders> MIT License Copyright (c) 2020 brnrs
Permission is hereby granted, free of charge, to any person obtaining a copy Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal of this software and associated documentation files (the "Software"), to deal

@ -0,0 +1,7 @@
#[cfg(test)]
mod tests {
#[test]
fn it_works() {
assert_eq!(2 + 2, 4);
}
}
Loading…
Cancel
Save