Files
element-call-book/book_en/html/listings/ch01-02-element-call-hello/listing-01-02/Cargo.toml
2024-10-17 18:01:12 +02:00

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