2023-06-26 19:15:34 -06:00
|
|
|
[package]
|
|
|
|
name = "asp"
|
2023-06-28 22:28:48 -06:00
|
|
|
description = "A library implementation of the ariadne signature profile specification v0"
|
2023-06-28 22:24:42 -06:00
|
|
|
version = "0.1.0"
|
2023-06-26 19:15:34 -06:00
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2024-07-08 13:40:07 -06:00
|
|
|
anyhow = "1.0.86"
|
|
|
|
data-encoding = "2.6.0"
|
|
|
|
hex_color = { version = "3.0.0", features = ["serde"] }
|
|
|
|
josekit = "0.8.6"
|
|
|
|
openssl = "0.10.64"
|
|
|
|
reqwest = "0.12.5"
|
|
|
|
serde = { version = "1.0.204", features = ["derive"] }
|
|
|
|
serde-email = "3.0.1"
|
|
|
|
serde_json = { version = "1.0.120", features = ["preserve_order"] }
|
|
|
|
sha2 = "0.10.8"
|
|
|
|
thiserror = "1.0.61"
|
|
|
|
tokio = { version = "1.38.0", features = ["macros", "rt-multi-thread"] }
|
|
|
|
url = { version = "2.5.2", features = ["serde"] }
|