about summary refs log tree commit diff
path: root/kittybox-rs/indieauth/Cargo.toml
blob: 80511f917510e86b2d80f57030c84b6dc451b4b9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[package]
name = "kittybox-indieauth"
version = "0.1.0"
edition = "2021"

[dev-dependencies]
serde_json = "^1.0.64"       # A JSON serialization file format
serde_urlencoded = "^0.7.0"  # `x-www-form-urlencoded` meets Serde
[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"]