Skip to content

Commit 08428e0

Browse files
committed
first commit
0 parents  commit 08428e0

315 files changed

Lines changed: 49918 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.DS_Store

6 KB
Binary file not shown.

.github/workflows/ci.yml

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
name: ci
2+
3+
on:
4+
push:
5+
branches: [ "main" ]
6+
pull_request:
7+
branches: [ "main" ]
8+
9+
env:
10+
CARGO_TERM_COLOR: always
11+
RUSTFLAGS: "-Dwarnings"
12+
13+
jobs:
14+
build:
15+
runs-on: ubuntu-latest
16+
steps:
17+
- uses: actions/checkout@v4
18+
19+
- name: Install system dependencies
20+
run: |
21+
sudo apt-get update
22+
sudo apt-get install -y \
23+
pkg-config \
24+
libopencv-dev \
25+
libavcodec-dev \
26+
libavformat-dev \
27+
libavutil-dev \
28+
libswscale-dev \
29+
libswresample-dev \
30+
libavfilter-dev \
31+
libavdevice-dev \
32+
clang \
33+
libclang-dev
34+
35+
- name: Install Rust toolchain
36+
uses: dtolnay/rust-toolchain@stable
37+
38+
- name: Build
39+
run: cargo build --verbose
40+
41+
- name: Run tests
42+
run: cargo test --verbose
43+
44+
- name: Run clippy
45+
run: cargo clippy --all-targets --all-features

.gitignore

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Generated by Cargo
2+
# will have compiled files and executables
3+
debug/
4+
target/
5+
6+
# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
7+
# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
8+
Cargo.lock
9+
10+
# These are backup files generated by rustfmt
11+
**/*.rs.bk
12+
13+
# MSVC Windows builds of rustc generate these, which store debugging information
14+
*.pdb
15+
16+
# Application specific
17+
logs/
18+
*.log

Cargo.toml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
[workspace]
2+
resolver = "2"
3+
4+
members = [
5+
# Frontend
6+
"frontend",
7+
8+
# Backend (Server/Application)
9+
"backend",
10+
11+
# Shared utilities
12+
"shared/logger",
13+
"shared/json_parser",
14+
"shared/config_loader",
15+
16+
# WebRTC (Independent library)
17+
"webrtc",
18+
"webrtc/ice",
19+
"webrtc/media",
20+
"webrtc/network",
21+
"webrtc/sdp",
22+
"webrtc/stun",
23+
]

INFORME).pdf

1.58 MB
Binary file not shown.

0 commit comments

Comments
 (0)