| 9c3017fc | 22-May-2023 |
pinkforest <[email protected]> |
Remove redundant comment |
| 6bf5ae26 | 22-May-2023 |
pinkforest <[email protected]> |
Remove redundant elliptic-curves dependency |
| 710b9924 | 22-May-2023 |
pinkforest <[email protected]> |
Remove redundant signature dep |
| dad7988c | 22-May-2023 |
pinkforest <[email protected]> |
Fix duplicate dalek dep |
| becc4897 | 08-Apr-2023 |
yngrtc <[email protected]> |
bump dtls version to v0.7.2 |
| 97921129 | 08-Apr-2023 |
yngrtc <[email protected]> |
fix clippy default warning |
| d5318c9e | 01-Apr-2023 |
Greg Morenz <[email protected]> |
Update x25519-dalek |
| 5859550c | 07-Mar-2023 |
andreastedile <[email protected]> |
Fix incorrect key and certificate file paths
Signed-off-by: andreastedile <[email protected]> |
| 3bacf369 | 02-Mar-2023 |
koushiro <[email protected]> |
downgrade x509-parser to fix minimial-versions tests |
| e215e908 | 01-Mar-2023 |
koushiro <[email protected]> |
update rust-version: 1.60.0 ==> 1.63.0 |
| 0e72c401 | 16-Feb-2023 |
koushiro <[email protected]> |
update some dependencies and remove some useless dependencies |
| 6ebcdc32 | 25-Feb-2023 |
yngrtc <[email protected]> |
bump dtls version to v0.7.1 |
| 5d8fe953 | 02-Feb-2023 |
João Oliveira <[email protected]> |
general: apply clippy lints (#407)
* general: update crates to 2021 edition.
* general: apply clippy --fix
* general: apply manual clippy lints
* cargo fmt. |
| 4cd47d18 | 04-Jan-2023 |
Vincent Esche <[email protected]> |
Change example code for converting private keys (EC -> PKCS8) from Go to Rust |
| 0186b0a5 | 03-Jan-2023 |
Vincent Esche <[email protected]> |
Add missing newlines in 'README.md' files |
| 7690dbd0 | 03-Jan-2023 |
Vincent Esche <[email protected]> |
Remove hard tabs from code snippet in 'README.md' file |
| 23f41ab9 | 03-Jan-2023 |
Vincent Esche <[email protected]> |
Add language specifiers for markdown code blocks |
| c9103312 | 03-Jan-2023 |
Vincent Esche <[email protected]> |
Remove trailing spaces in 'README.md' files |
| 0283fb34 | 04-Jan-2023 |
Vincent Esche <[email protected]> |
Resolve change-requests from code review |
| c19675fc | 03-Jan-2023 |
Vincent Esche <[email protected]> |
Silence `clippy::type_complexity` warning in tests |
| 5b6b0d60 | 03-Jan-2023 |
Vincent Esche <[email protected]> |
Simplify initialization of types with `Default::default()`, followed by field assignment in tests |
| 4ee96d0c | 03-Jan-2023 |
Vincent Esche <[email protected]> |
Replace `Box::new(T::default())` with `Box::<T>::default()` |
| 344ddfe3 | 03-Jan-2023 |
Vincent Esche <[email protected]> |
Replace single-arm match with if-let |
| 785fc35e | 03-Jan-2023 |
Vincent Esche <[email protected]> |
Remove unreachable code |
| 3f36d5ac | 03-Jan-2023 |
Vincent Esche <[email protected]> |
Replace `assert_eq!(<bool>, true)` with `assert!(<bool>)` and `assert_eq!(<bool>, false)` with `assert!(!<bool>)` |