-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (34 loc) · 918 Bytes
/
Cargo.toml
File metadata and controls
37 lines (34 loc) · 918 Bytes
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 = "inmor"
version = "0.3.0"
edition = "2024"
[[bin]]
name = "inmor"
path = "src/bin/inmor/main.rs"
[[bin]]
name = "inmor-collection"
path = "src/bin/inmor-collection/main.rs"
[dependencies]
actix-web = { version = "4.10.2", features = ["rustls-0_23"] }
josekit = "0.10.3"
redis = { version = "0.30.0", features = ["tokio-comp", "connection-manager"] }
serde = "1.0.219"
serde_json = "1.0.140"
config = "0.15.11"
lazy_static = "1.5.0"
reqwest = { version = "0.12.15", features = ["blocking"] }
actix-web-lab = "0.26.0"
tokio = { version = "1", features = ["full"] }
env_logger = "0.11.8"
log = "0.4.27"
base64 = "0.22"
oidfed_metadata_policy = "0.8.0"
anyhow = "1.0.98"
toml = "0.9.0"
clap = { version = "4.5.41", features = ["derive"] }
ureq = { version = "*", features = ["json", "native-tls"], default-features = false }
sha2 = "0.10.9"
rustls = "0.23"
rustls-pemfile = "2.2"
tera = "1"
url = "2"