26 строки
577 B
TOML
26 строки
577 B
TOML
[package]
|
|
name = "janus-plugin-sfu"
|
|
description = "Janus SFU for game networking."
|
|
edition = "2018"
|
|
version = "0.1.0"
|
|
authors = ["Marshall Polaris <marshall@pol.rs>"]
|
|
readme = "README.md"
|
|
repository = "https://github.com/mozilla/janus-plugin-sfu"
|
|
license = "MPL-2.0"
|
|
publish = false
|
|
|
|
[lib]
|
|
crate_type = ["cdylib"]
|
|
|
|
[profile.release]
|
|
lto = true
|
|
|
|
[dependencies]
|
|
janus-plugin = { git = "https://github.com/mozilla/janus-plugin-rs" }
|
|
once_cell = "1.2"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
rust-ini = "0.13"
|
|
jsonwebtoken = "7.0"
|
|
num_cpus = "1.12.0"
|