File tree 6 files changed +50
-1
lines changed
6 files changed +50
-1
lines changed Original file line number Diff line number Diff line change @@ -3,4 +3,9 @@ node_modules
3
3
** /package-lock.json
4
4
.vscode
5
5
** /.vs
6
- .ionide
6
+ .ionide
7
+ .idea /
8
+ webrtc-rs /client /target /
9
+ webrtc-rs /server /target /
10
+ webrtc-rs /client /Cargo.lock
11
+ webrtc-rs /server /Cargo.lock
Original file line number Diff line number Diff line change
1
+ # Generated by Cargo
2
+ # will have compiled files and executables
3
+ /target /
4
+ /.idea /
5
+ /crates /target /
6
+ /crates /.idea /
7
+
8
+ # Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
9
+ # More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
10
+ Cargo.lock
11
+ /crates /Cargo.lock
12
+
13
+ # These are backup files generated by rustfmt
14
+ ** /* .rs.bk
Original file line number Diff line number Diff line change
1
+ [package ]
2
+ name = " client"
3
+ version = " 0.1.0"
4
+ edition = " 2018"
5
+
6
+ # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
7
+
8
+ [dependencies ]
9
+ webrtc =" 0.0.15"
10
+ tokio = { version = " 1.12.0" , features = [" full" ] }
11
+ serde = { version = " 1.0" , features = [" derive" ] }
12
+ serde_json = " 1.0"
13
+ env_logger = " 0.9.0"
14
+ log = " 0.4.14"
15
+ clap = " 2"
16
+ hyper = { version = " 0.14.13" , features = [" full" ] }
Original file line number Diff line number Diff line change
1
+ fn main ( ) {
2
+ println ! ( "Hello, world!" ) ;
3
+ }
Original file line number Diff line number Diff line change
1
+ [package ]
2
+ name = " server"
3
+ version = " 0.1.0"
4
+ edition = " 2018"
5
+
6
+ # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
7
+
8
+ [dependencies ]
Original file line number Diff line number Diff line change
1
+ fn main ( ) {
2
+ println ! ( "Hello, world!" ) ;
3
+ }
You can’t perform that action at this time.
0 commit comments