-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (38 loc) · 1.13 KB
/
Copy pathCargo.toml
File metadata and controls
41 lines (38 loc) · 1.13 KB
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
[package]
name = "oidc-authorizer"
version = "0.4.0"
edition = "2021"
license = "MIT"
# Starting in Rust 1.62 you can use `cargo add` to add dependencies
# to your project.
#
# If you're using an older Rust version,
# download cargo-edit(https://github.com/killercup/cargo-edit#installation)
# to install the `add` subcommand.
#
# Running `cargo add DEPENDENCY_NAME` will
# add the latest version of a dependency to the list,
# and it will keep the alphabetic ordering for you.
[dependencies]
chrono = "0.4.31"
futures-util = "0.3.28"
jsonwebtoken = { version = "10.3.0", features = ["rust_crypto"] }
lambda_runtime = "1.0.2"
reqwest = { version = "0.12.28", default-features = false, features = [
"json",
"rustls-tls",
"http2",
] }
serde = "1.0.189"
serde_json = "1.0.107"
thiserror = "2.0.12"
tokio = { version = "1", features = ["macros"] }
tracing = { version = "0.1", features = ["log"] }
tracing-subscriber = { version = "0.3", default-features = false, features = [
"fmt",
] }
cel-interpreter = { version = "0.10", features = ["json", "regex", "chrono"] }
[dev-dependencies]
httpmock = "0.8.2"
tempfile = "3.26.0"
tracing-test = "0.2.4"