identity/aziot-identityd/Cargo.toml (48 lines of code) (raw):
[package]
name = "aziot-identityd"
version = "0.1.0"
authors = ["Azure IoT Edge Devs"]
publish = false
description = """
The code used for Identity Service.
"""
edition = "2021"
[dependencies]
async-trait = "0.1"
chrono = "0.4"
futures-util = "0.3"
hex = "0.4"
http = "0.2"
hyper = "0.14"
lazy_static = "1"
libc = "0.2"
log = "0.4"
openssl = "0.10"
openssl-sys = "0.9"
percent-encoding = "2"
regex = "1"
serde = "1"
serde_json = "1.0"
tokio = { version = "1", features = ["parking_lot", "time"] }
toml = "0.7"
url = "2"
aziot-cert-client-async = { path = "../../cert/aziot-cert-client-async" }
aziot-cert-common-http = { path = "../../cert/aziot-cert-common-http" }
aziot-cloud-client-async = { path = "../aziot-cloud-client-async" }
aziot-identity-common = { path = "../aziot-identity-common" }
aziot-identity-common-http = { path = "../aziot-identity-common-http" }
aziot-identityd-config = { path = "../aziot-identityd-config" }
aziot-key-client = { path = "../../key/aziot-key-client" }
aziot-key-client-async = { path = "../../key/aziot-key-client-async" }
aziot-key-common = { path = "../../key/aziot-key-common" }
aziot-key-common-http = { path = "../../key/aziot-key-common-http" }
aziot-key-openssl-engine = { path = "../../key/aziot-key-openssl-engine" }
aziot-tpm-client-async = { path = "../../tpm/aziot-tpm-client-async" }
aziot-tpm-common-http = { path = "../../tpm/aziot-tpm-common-http" }
cert-renewal = { path = "../../cert/cert-renewal" }
config-common = { path = "../../config-common", features = ["watcher"] }
http-common = { path = "../../http-common" }
openssl2 = { path = "../../openssl2" }
[build-dependencies]
openssl-build = { path = "../../openssl-build/" }
[dev-dependencies]