mirror of
https://github.com/matrix-org/matrix-rust-sdk.git
synced 2026-02-09 07:02:23 -05:00
33 lines
667 B
TOML
33 lines
667 B
TOML
[package]
|
|
name = "example-oauth-cli"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
publish = false
|
|
license = "Apache-2.0"
|
|
|
|
[package.metadata.release]
|
|
release = false
|
|
|
|
[[bin]]
|
|
name = "example-oauth-cli"
|
|
test = false
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
dirs.workspace = true
|
|
futures-util.workspace = true
|
|
matrix-sdk-ui = { path = "../../crates/matrix-sdk-ui" }
|
|
rand.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
tokio = { workspace = true, features = ["macros", "rt-multi-thread"] }
|
|
tracing-subscriber.workspace = true
|
|
url.workspace = true
|
|
|
|
[dependencies.matrix-sdk]
|
|
path = "../../crates/matrix-sdk"
|
|
features = ["local-server"]
|
|
|
|
[lints]
|
|
workspace = true
|