16 lines
426 B
TOML
16 lines
426 B
TOML
[package]
|
|
name = "nkode-protocol"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
opaque-ke = { version = "4.0.1",default-features = true, features = [ "std","argon2"] }
|
|
rand = { version = "0.8.5", features = ["std"] }
|
|
sha2 = "0.10.9"
|
|
async-trait = "0.1.89"
|
|
uuid = { version = "1.19.0", features = ["v4"] }
|
|
tokio = { version = "1.48.0", features = ["macros", "rt-multi-thread", "sync"] }
|
|
nkode-rs = { path = "nkode-rs" }
|
|
|
|
|