This commit is contained in:
Gvidas Juknevičius 2025-06-25 19:44:28 +03:00
commit ee8842a9ec
Signed by: MCorange
GPG Key ID: 5BE6B533CB76FE86
4 changed files with 7136 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
/target

7120
Cargo.lock generated Normal file

File diff suppressed because it is too large Load Diff

12
Cargo.toml Normal file
View File

@ -0,0 +1,12 @@
[package]
name = "tgp"
version = "0.1.0"
edition = "2024"
[dependencies]
anyhow = "1.0.98"
gstreamer-webrtc = "0.23.5"
scap = "0.0.8"
slint = "1.12.1"
tokio = { version = "1.45.1", features = ["full"] }
webrtc = "0.13.0"

3
src/main.rs Normal file
View File

@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}