-
Notifications
You must be signed in to change notification settings - Fork 16
/
Cargo.toml
64 lines (55 loc) · 1.33 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[workspace]
members = ["derive", "./."]
[package]
name = "actix-jwt-auth-middleware"
version = "0.6.0"
edition = "2021"
authors = ["Michael van Straten"]
repository = "https://github.com/michaelvanstraten/actix-jwt-auth-middleware"
documentation = "https://docs.rs/actix-jwt-auth-middleware/"
keywords = [
"web",
"middleware",
"authentication",
"utility",
"actix-web",
]
categories = [
"authentication",
"cryptography",
"web-programming",
"web-programming::http-server",
]
readme = "readme.md"
description = "This crate implements a JSON Webtoken (JWT) middleware for the actix-web framework."
license = "MIT"
rust-version = "1.75"
[dependencies]
serde = "1.0.145"
derive_builder = "0.11.2"
chrono = "0.4.22"
form_urlencoded = "1.1.0"
[dependencies.actix-jwt-auth-middleware-derive]
path = "derive"
version = "0.2"
[dependencies.actix-web]
version = "4.2.1"
default_features = false
features = ["cookies"]
[dependencies.jwt-compact]
version = "0.8.0"
default-features = false
features = ["std", "clock"]
[dev-dependencies]
lazy_static = "1.4.0"
actix-state-guards = "0.1.0"
ed25519-compact = "2.1.1"
[dev-dependencies.actix-web]
version = "4.2.1"
default-features = true
[dev-dependencies.serde]
version = "1.0.145"
features = ["derive"]
[dev-dependencies.jwt-compact]
version = "0.8.0"
features = ["ed25519-compact"]