-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
30 lines (29 loc) · 976 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
28
29
30
[package]
authors = ["[email protected]"]
description = "WebService providing access to omnect device features."
edition = "2021"
homepage = "https://www.omnect.io/home"
license = "MIT OR Apache-2.0"
name = "omnect-ui"
readme = "README.md"
repository = "[email protected]:omnect/omnect-ui.git"
version = "0.3.0"
[dependencies]
actix-files = "0.6"
actix-rt = "2.9"
actix-web = { version = "4", features = ["rustls-0_22"] }
actix-web-httpauth = "0.8"
anyhow = "1.0"
env_logger = { version = "0.11", default-features = false }
http-body-util = { version = "0.1", default-features = false, features = [] }
hyper = { version = "1.3", default-features = false, features = [
"client",
"http1",
] }
hyper-util = { version = "0.1", default-features = false, features = ["tokio"] }
jwt-simple = "0.12"
log = "^0.4"
log-panics = { version = "2", features = ["with-backtrace"] }
rustls = "0.22"
rustls-pemfile = "2"
tokio = { version = "1", features = ["macros", "net", "process"] }