-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
yngrtc
committed
Mar 9, 2024
1 parent
e5fa49e
commit 6747597
Showing
38 changed files
with
41 additions
and
56 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,17 @@ | ||
[package] | ||
name = "ice" | ||
name = "rtc-ice" | ||
version = "0.0.0" | ||
authors = ["Rain Liu <[email protected]>"] | ||
edition = "2021" | ||
description = "ICE in Rust" | ||
description = "RTC ICE in Rust" | ||
license = "MIT/Apache-2.0" | ||
documentation = "https://docs.rs/rtc-ice" | ||
homepage = "https://webrtc.rs" | ||
repository = "https://github.com/webrtc-rs/rtc" | ||
|
||
[dependencies] | ||
shared = { path = "../shared", package = "shared", default-features = false, features = [] } | ||
stun = { path = "../stun", package = "stun" } | ||
shared = { path = "../rtc-shared", package = "rtc-shared", default-features = false, features = [] } | ||
stun = { path = "../rtc-stun", package = "rtc-stun" } | ||
|
||
crc = "3.0" | ||
log = "0.4.16" | ||
|
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
4 changes: 2 additions & 2 deletions
4
ice/src/attributes/control/mod.rs → rtc-ice/src/attributes/control/mod.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
#[cfg(test)] | ||
mod control_test; | ||
//TODO:#[cfg(test)] | ||
//TODO:mod control_test; | ||
|
||
use std::fmt; | ||
|
||
|
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions
4
ice/src/attributes/priority/priority_test.rs → .../src/attributes/priority/priority_test.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
ice/src/attributes/use_candidate/mod.rs → rtc-ice/src/attributes/use_candidate/mod.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
ice/src/connection_state/mod.rs → rtc-ice/src/connection_state/mod.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
#[cfg(test)] | ||
mod state_test; | ||
//TODO:#[cfg(test)] | ||
//TODO:mod state_test; | ||
|
||
use std::fmt; | ||
|
||
|
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
#[cfg(test)] | ||
mod rand_test; | ||
//TODO:#[cfg(test)] | ||
//TODO:mod rand_test; | ||
|
||
use rand::{thread_rng, Rng}; | ||
|
||
|
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.