add tcp server

This commit is contained in:
Thomas Wickham
2021-03-02 23:07:01 +01:00
parent ffce735b79
commit bbecb47c59
6 changed files with 112 additions and 15 deletions
+7 -4
View File
@@ -4,13 +4,19 @@ edition = "2018"
name = "lldap"
version = "0.1.0"
[dependencies]
actix-web = "3"
actix = "*"
actix-rt = "1.1.1"
actix-server = "*"
actix-service = "*"
actix-web = "*"
anyhow = "*"
clap = "3.0.0-beta.2"
futures-util = "*"
http = "*"
log = "*"
serde = "*"
thiserror = "*"
tokio = "0.2.25"
tracing = "*"
tracing-actix-web = "*"
tracing-log = "*"
@@ -19,6 +25,3 @@ tracing-subscriber = "*"
[dependencies.figment]
features = ["toml", "env"]
version = "*"
[dev-dependencies]
actix-rt = "*"