forked from WebThingsIO/webthing-rust
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
35 lines (32 loc) · 782 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
31
32
33
34
35
[package]
name = "webthing"
version = "0.14.0"
authors = ["WebThingsIO <[email protected]>"]
repository = "https://github.com/WebThingsIO/webthing-rust"
homepage = "https://github.com/WebThingsIO/webthing-rust"
license = "MPL-2.0"
readme = "README.md"
description = "Implementation of an HTTP Web Thing."
edition = "2018"
[dependencies]
actix = "0.10"
actix-net = "0.2"
actix-service = "1.0"
actix-web = "3.3"
actix-web-actors = "3.0"
chrono = "0.4"
futures = "0.3"
get_if_addrs = "0.5"
hostname = "0.3"
libmdns = "0.6"
openssl = { version = "0.10", optional = true }
serde_json = "1.0"
uuid = { version = "0.8", features = ["v4"] }
valico = "3.5"
[dev-dependencies]
actix-rt = "1.1"
env_logger = "0.8"
rand = "0.8"
[features]
default = []
ssl = ["actix-web/openssl", "openssl"]