From 9ca0e358dc95e7358815886b061288f04a7d29af Mon Sep 17 00:00:00 2001 From: Vika Date: Sun, 10 Jul 2022 19:35:10 +0300 Subject: kittybox-indieauth: init This crate is the base framework-agnostic implementation of all data structures and methods required for IndieAuth protocol. Anything that can deserialize HTTP request payloads with serde can utilize this crate. This is a good candidate to independently release on crates.io when the interface becomes stable enough. --- kittybox-rs/indieauth/Cargo.toml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 kittybox-rs/indieauth/Cargo.toml (limited to 'kittybox-rs/indieauth/Cargo.toml') diff --git a/kittybox-rs/indieauth/Cargo.toml b/kittybox-rs/indieauth/Cargo.toml new file mode 100644 index 0000000..222d706 --- /dev/null +++ b/kittybox-rs/indieauth/Cargo.toml @@ -0,0 +1,18 @@ +[package] +name = "kittybox-indieauth" +version = "0.1.0" +edition = "2021" + +[dev-dependencies] +serde_json = "^1.0.64" # A JSON serialization file format + +[dependencies] +rand = "^0.8.5" # Utilities for random number generation +data-encoding = "^2.3.2" # Efficient and customizable data-encoding functions like base64, base32, and hex +sha2 = "^0.9.8" # SHA-2 series of algorithms for Rust +[dependencies.url] # URL library for Rust, based on the WHATWG URL Standard +version = "^2.2.1" +features = ["serde"] +[dependencies.serde] # A generic serialization/deserialization framework +version = "^1.0.125" +features = ["derive"] -- cgit 1.4.1