-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
37 lines (34 loc) · 1.18 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
[package]
name = "mauth-client"
version = "0.4.0"
authors = ["Mason Gup <[email protected]>"]
edition = "2021"
documentation = "https://docs.rs/mauth-client/"
license = "MIT"
description = "Sign requests and validate responses using the Medidata MAuth protocol"
readme = "README.md"
homepage = "https://github.com/mdsol/mauth-client-rust"
repository = "https://github.com/mdsol/mauth-client-rust"
keywords = ["security", "authentication", "web"]
categories = ["authentication", "web-programming"]
[dependencies]
reqwest = { version = "0.12", features = ["json"] }
url = "2"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_yml = "0.0.10"
uuid = { version = "1", features = ["v4"] }
dirs = "5"
chrono = "0.4"
tokio = { version = "1", features = ["fs"] }
tower = { version = "0.4", optional = true }
axum = { version = ">= 0.7.2", optional = true }
futures-core = { version = "0.3", optional = true }
http = { version = "1", optional = true }
bytes = { version = "1", optional = true }
thiserror = "1"
mauth-core = "0.5"
[dev-dependencies]
tokio = { version = "1", features = ["rt-multi-thread", "macros"] }
[features]
axum-service = ["tower", "futures-core", "axum", "http", "bytes"]