-
Notifications
You must be signed in to change notification settings - Fork 25
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
Showing
1 changed file
with
24 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,8 @@ | |
name = "live777" | ||
version = "0.3.2" | ||
edition = "2021" | ||
license = "MPL-2.0" | ||
description = "A very simple, high performance, edge WebRTC SFU" | ||
|
||
[workspace] | ||
members = [".", "libs/cli", "libs/libwish", "tools/whepfrom", "tools/whipinto"] | ||
|
@@ -31,3 +33,25 @@ rust-embed = { version = "8.0.0", features = ["axum-ex"] } | |
prometheus = "0.13.3" | ||
lazy_static = "1.4.0" | ||
thiserror = "1" | ||
|
||
# cargo install cargo-deb | ||
# Reference: https://github.com/kornelski/cargo-deb | ||
[package.metadata.deb] | ||
maintainer = "Metal A-Wing <[email protected]>" | ||
copyright = "BinBat LTD <[email protected]>" | ||
license-file = ["LICENSE"] | ||
extended-description = """\ | ||
A very simple, high performance, edge WebRTC SFU.\ | ||
Real-time video streaming for the `WHIP`/`WHEP` as first protocol.\ | ||
""" | ||
depends = "libc6 systemd" | ||
section = "utility" | ||
priority = "optional" | ||
assets = [ | ||
["target/release/live777", "usr/bin/", "755"], | ||
["target/release/whipinto", "usr/bin/", "755"], | ||
["target/release/whepfrom", "usr/bin/", "755"], | ||
["config-dist.toml", "etc/live777/config.toml", "644"], | ||
["live777.service", "usr/lib/systemd/system/live777.service", "644"], | ||
["README.md", "usr/share/doc/live777/README", "644"], | ||
] |