Skip to content

Commit 31122bc

Browse files
committed
Add Network module with initial configuration
1 parent 6e3f467 commit 31122bc

File tree

3 files changed

+10
-0
lines changed

3 files changed

+10
-0
lines changed

Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@ members = [
8585
"Modules/Executables/Shell/Graphical",
8686
"Modules/Executables/Terminal",
8787
"Modules/Authentication",
88+
"Modules/Network",
8889
]
8990
exclude = [
9091
"Modules/Virtual_machine/Tests/WASM_test",

Modules/Network/Cargo.toml

+6
Original file line numberDiff line numberDiff line change
@@ -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

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#![allow(non_snake_case)]
2+
#![allow(non_camel_case_types)]
3+
#![allow(non_upper_case_globals)]

0 commit comments

Comments
 (0)