We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6e3f467 commit 31122bcCopy full SHA for 31122bc
Cargo.toml
@@ -85,6 +85,7 @@ members = [
85
"Modules/Executables/Shell/Graphical",
86
"Modules/Executables/Terminal",
87
"Modules/Authentication",
88
+ "Modules/Network",
89
]
90
exclude = [
91
"Modules/Virtual_machine/Tests/WASM_test",
Modules/Network/Cargo.toml
@@ -0,0 +1,6 @@
1
+[package]
2
+name = "Network"
3
+version = "0.1.0"
4
+edition = "2021"
5
+
6
+[dependencies]
Modules/Network/src/lib.rs
@@ -0,0 +1,3 @@
+#![allow(non_snake_case)]
+#![allow(non_camel_case_types)]
+#![allow(non_upper_case_globals)]
0 commit comments