Skip to content

Commit

Permalink
Add receive endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
rabe1028 committed Sep 3, 2023
1 parent 5036766 commit 4931a52
Show file tree
Hide file tree
Showing 10 changed files with 801 additions and 61 deletions.
65 changes: 65 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

29 changes: 16 additions & 13 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,24 +1,16 @@
[package]
name = "nodex"
version = "1.1.12"
authors = [ "NodeX Authors <>" ]
authors = ["NodeX Authors <>"]
edition = "2018"
license-file = "LICENSE"
description = "Automate device security provisioning with edge intelligence."
homepage = "https://nodecross.io"
documentation = "https://docs.nodecross.io"
repository = "https://github.com/nodecross/nodex"
readme = "README.md"
keywords = [
"iot",
"embedded",
"root-of-trust",
"did",
]
categories = [
"embedded",
"cryptography",
]
keywords = ["iot", "embedded", "root-of-trust", "did"]
categories = ["embedded", "cryptography"]
build = "build.rs"

[[bin]]
Expand Down Expand Up @@ -49,7 +41,13 @@ hdwallet = { version = "0.3.1" }
base64 = { version = "0.21.0" }
digest = { version = "0.10.3" }
sha2 = { version = "0.10.2" }
k256 = { version = "0.10.4", features = ["ecdh", "ecdsa", "sha256", "keccak256", "serde"] }
k256 = { version = "0.10.4", features = [
"ecdh",
"ecdsa",
"sha256",
"keccak256",
"serde",
] }
hmac = { version = "0.12.1" }
scrypt = { version = "0.11.0", features = ["simple"] }
aes-gcm-siv = { git = "https://github.com/RustCrypto/AEADs.git", tag = "aes-gcm-siv-v0.11.0-pre" }
Expand All @@ -58,8 +56,13 @@ getrandom = { version = "0.2" }
didcomm-rs = { version = "0.7.2" }
x25519-dalek = { version = "1.2.0" }

reqwest = { version = "0.11", features = ["json", "rustls-tls"], default-features = false }
reqwest = { version = "0.11", features = [
"json",
"rustls-tls",
], default-features = false }
actix = { version = "0.13.0" }
actix-web = { version = "4.3.0" }
actix-web-actors = { version = "4.2.0" }
actix-rt = { version = "2.7.0" }
qstring = { version = "0.7.2" }

Expand Down
Loading

0 comments on commit 4931a52

Please sign in to comment.