Files
pubky-core/examples/Cargo.toml
Severin Alexander Bühler 6f94333101 chore: Renamed pubky member dir to pubky-client (#90)
* chore: Renamed pubky member dir to pubky-client

* fixed paths

* fixed wasm test workflow
2025-03-21 14:24:34 +02:00

29 lines
615 B
TOML

[package]
name = "authn"
version = "0.1.0"
edition = "2021"
[[bin]]
name = "signup"
path = "./authn/signup.rs"
[[bin]]
name = "authenticator"
path = "./authz/authenticator.rs"
[[bin]]
name = "request"
path = "./request/main.rs"
[dependencies]
anyhow = "1.0.95"
base64 = "0.22.1"
clap = { version = "4.5.29", features = ["derive"] }
pubky = { path = "../pubky-client" }
pubky-common = { path = "../pubky-common" }
reqwest = "0.12.12"
rpassword = "7.3.1"
tokio = { version = "1.43.0", features = ["macros", "rt-multi-thread"] }
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
url = "2.5.4"