mirror of
https://github.com/matrix-org/matrix-rust-sdk.git
synced 2026-05-04 05:58:11 -04:00
33 lines
721 B
TOML
33 lines
721 B
TOML
[package]
|
|
name = "example-oidc-cli"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
license = "Apache-2.0"
|
|
|
|
[[bin]]
|
|
name = "example-oidc-cli"
|
|
test = false
|
|
|
|
[dependencies]
|
|
anyhow = { workspace = true }
|
|
dirs = "5.0.1"
|
|
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 = ["experimental-oidc", "local-server"]
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[package.metadata.release]
|
|
release = false
|