about summary refs log tree commit diff
path: root/kittybox-rs/indieauth/Cargo.toml
blob: 222d7066845e91da668fdd67a38f6922fc1aa1c8 (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

[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"]