diff options
author | Vika <vika@fireburn.ru> | 2022-07-19 05:27:39 +0300 |
---|---|---|
committer | Vika <vika@fireburn.ru> | 2022-07-19 05:32:18 +0300 |
commit | 12c96ceaeaabe0aa7d0d2c70497886d9a5610f10 (patch) | |
tree | 397b108e44ca16eb402c3725e46a73a8dc1053a3 /kittybox-rs/Cargo.lock | |
parent | 1efb89a75af31d7580fdb06e3b4535bcde08e966 (diff) | |
download | kittybox-12c96ceaeaabe0aa7d0d2c70497886d9a5610f10.tar.zst |
kittybox-indieauth: convert Error into axum::response::Response
This requires the `axum` feature to be enabled, to prevent unwanted dependencies (e.g. in client apps or when using a different framework, since the library doesn't concern itself with I/O)
Diffstat (limited to 'kittybox-rs/Cargo.lock')
-rw-r--r-- | kittybox-rs/Cargo.lock | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/kittybox-rs/Cargo.lock b/kittybox-rs/Cargo.lock index b44fa6f..716b10d 100644 --- a/kittybox-rs/Cargo.lock +++ b/kittybox-rs/Cargo.lock @@ -1544,7 +1544,9 @@ dependencies = [ name = "kittybox-indieauth" version = "0.1.0" dependencies = [ + "axum-core", "data-encoding", + "http", "rand 0.8.5", "serde", "serde_json", |