We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
0 parents commit 0ef93d5Copy full SHA for 0ef93d5
.gitignore
@@ -0,0 +1,3 @@
1
+/target
2
+**/*.rs.bk
3
+Cargo.lock
Cargo.toml
@@ -0,0 +1,7 @@
+[package]
+name = "tcp-channel"
+version = "0.1.0"
4
+authors = ["4lDO2 <4lDO2@protonmail.com>"]
5
+edition = "2018"
6
+
7
+[dependencies]
src/lib.rs
+#[cfg(test)]
+mod tests {
+ #[test]
+ fn it_works() {
+ assert_eq!(2 + 2, 4);
+ }
+}
0 commit comments