Skip to content

Commit e8446ba

Browse files
author
Andreas Auernhammer
committed
initialize the project
This commit initializes the project with `cargo init --lib`. It adds nothing more than the standard library setup such that we can start from a clean basis.
1 parent 6953a7f commit e8446ba

File tree

3 files changed

+18
-1
lines changed

3 files changed

+18
-1
lines changed

Cargo.toml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
[package]
2+
name = "sio"
3+
version = "0.1.0"
4+
authors = ["Andreas Auernhammer <[email protected]>"]
5+
edition = "2018"
6+
7+
description = "Secure IO"
8+
license = "MIT"
9+
10+
[dependencies]

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
# sio-rs
1+
# Secure IO

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)