-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
merge: pull request #3 from namib-project/bump-tinydtls-9d6cf54
bump tinydtls to 9d6cf54, update bindgen, bump crate version to 0.2.0
- Loading branch information
Showing
5 changed files
with
9 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,3 +4,4 @@ | |
members = [ | ||
"tinydtls-sys", | ||
] | ||
resolver = "2" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
[package] | ||
name = "tinydtls-sys" | ||
description = "Raw bindings to the TinyDTLS library." | ||
version = "0.1.2+tinydtls-c84e36f" | ||
version = "0.2.0+tinydtls-9d6cf54" | ||
edition = "2021" | ||
links = "tinydtls" | ||
# For tinydtls, both licenses can be applied, see https://www.eclipse.org/legal/eplfaq.php#DUALLIC | ||
|
@@ -18,6 +18,7 @@ authors = ["Hugo Hakim Damer <[email protected]>"] | |
categories = ["external-ffi-bindings", "network-programming", "cryptography", "embedded"] | ||
keywords = ["tinydtls", "sys", "dtls", "crypto"] | ||
exclude = ['/src/tinydtls/share/', '/src/tinydtls/include/', '/src/tinydtls/configure.prev'] | ||
resolver = "2" | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
[features] | ||
|
@@ -39,6 +40,6 @@ libc = "^0.2.112" | |
lazy_static = "^1.4" | ||
|
||
[build-dependencies] | ||
bindgen = "^0.59.2" | ||
bindgen = "^0.69.4" | ||
autotools = "^0.2.3" | ||
fs_extra = "^1.2" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule tinydtls
updated
30 files
+1 −0 | AutoConf.cmake | |
+11 −2 | CONTRIBUTING.md | |
+2 −0 | Makefile.in | |
+0 −2 | Makefile.riot | |
+23 −4 | README.md | |
+0 −1 | alert.h | |
+0 −1 | ccm.c | |
+1 −1 | configure.ac | |
+2 −1 | crypto.c | |
+25 −2 | crypto.h | |
+750 −457 | dtls.c | |
+12 −11 | dtls.h | |
+3 −0 | dtls_config.h.cmake.in | |
+28 −8 | dtls_debug.c | |
+20 −5 | dtls_debug.h | |
+1 −1 | dtls_time.h | |
+14 −1 | global.h | |
+2 −0 | peer.c | |
+35 −1 | platform-specific/dtls_prng_posix.c | |
+0 −2 | platform-specific/dtls_prng_win.c | |
+2 −1 | platform-specific/dtls_prng_zephyr.c | |
+2 −0 | session.c | |
+2 −4 | session.h | |
+2 −2 | tests/CMakeLists.txt | |
+5 −3 | tests/Makefile.in | |
+185 −112 | tests/dtls-client.c | |
+146 −68 | tests/dtls-server.c | |
+96 −0 | tests/dtls_ciphers_util.c | |
+26 −0 | tests/dtls_ciphers_util.h | |
+1 −0 | tinydtls.h |