Rust implementation of ANProto: the Authenticated and Non-networked protocol or ANother protocol.
at main 17 lines 521 B view raw
1[package] 2name = "anproto" 3version = "0.1.0" 4edition = "2021" 5description = "Rust implementation of ANProto: the Authenticated and Non-networked protocol" 6license = "Apache-2.0" 7keywords = ["crypto", "signature", "ed25519", "protocol", "authentication"] 8categories = ["cryptography", "authentication"] 9repository = "https://github.com/vic/anproto-rs" 10homepage = "https://github.com/vic/anproto-rs" 11documentation = "https://docs.rs/anproto" 12 13[dependencies] 14ed25519-dalek = "2.0" 15sha2 = "0.10" 16base64 = "0.21" 17rand = "0.8"