20 lines
549 B
TOML
20 lines
549 B
TOML
[package]
|
|
name = "harmony_auth"
|
|
edition = "2024"
|
|
version.workspace = true
|
|
readme.workspace = true
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
async-trait.workspace = true
|
|
chrono = { workspace = true, features = ["serde"] }
|
|
harmony_secret = { path = "../harmony_secret" }
|
|
harmony_types = { path = "../harmony_types" }
|
|
harmony_zitadel_auth = { path = "../harmony_zitadel_auth" }
|
|
reqwest.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
sha2.workspace = true
|
|
thiserror.workspace = true
|
|
uuid = { workspace = true, features = ["serde"] }
|