-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
28 lines (24 loc) · 942 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
[package]
name = "actix-error-mapper-middleware"
version = "0.1.1"
edition = "2021"
authors = ["Michael van Straten"]
repository = "https://github.com/michaelvanstraten/actix-error-mapper-middleware"
documentation = "https://docs.rs/actix-error-mapper-middleware/"
keywords = ["web", "futures", "utility", "actix-web", "error-handling"]
categories = ["Accessibility"]
readme = "readme.md"
description = "This simple crate allows you to remap actix-web errors to your own custom error type. You could for example return a html wrapped error. "
license = "MIT OR Apache-2.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
rand = "0.7"
ed25519-dalek = "1.0.1"
serde = "1.0"
actix-web="^4"
jwt-compact = { version = "0.5.0", features = ["ed25519-dalek"] }
serde_cbor = "0.11.1"
futures-util = "0.3.21"
[dev-dependencies]
rusty-html = "^0.1"
actix-jwt-auth-middleware = "^0.1"