34 lines
672 B
TOML
34 lines
672 B
TOML
# ANCHOR: All
|
|
[package]
|
|
# ANCHOR: Name
|
|
name = "element_call_hello"
|
|
# ANCHOR_END: Name
|
|
version = "0.0.1"
|
|
authors = [
|
|
"Ralf Zerres <ralf.zerres.de@gmail.com>",
|
|
]
|
|
description = "The Element-Call - Training project"
|
|
documentation = "https://docs.rs/orbtk"
|
|
repository = "https://github.com/redox-os/orbtk"
|
|
readme = "README.md"
|
|
license = "MIT"
|
|
keywords = [
|
|
"element-call",
|
|
"matrix",
|
|
"matrixrtc",
|
|
]
|
|
edition = "2021"
|
|
|
|
[profile.dev]
|
|
opt-level = 1
|
|
|
|
[dependencies]
|
|
#element-call = { git = "https://gitea.networkx.de/rzerres/element-call-book.git", branch = "develop" }
|
|
|
|
[[bin]]
|
|
# ANCHOR: Name
|
|
name = "element_call_hello"
|
|
# ANCHOR_END: Name
|
|
path = "src/main.rs"
|
|
# ANCHOR_END: All
|