File tree Expand file tree Collapse file tree 4 files changed +5
-6
lines changed Expand file tree Collapse file tree 4 files changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ This is small release/patch fixing a few bits here & there
65
65
* ` rand ` , ` 0.7.3 ` --> ` 0.8.5 `
66
66
* ` thiserror ` , ` 1.0.23 ` --> ` 1.0.32 `
67
67
* ` log ` library is moved into ` dev-dependencies ` and bumped to ` 0.4.17 `
68
- * Added code from PR [ # 24 ] ( /../../pull/24 ) - ensure dictionary parser not failing when file has tabs as well as whitespaces
68
+ * Added code from PR [ ! 24] ( /../../pull/24 ) - ensure dictionary parser not failing when file has tabs as well as whitespaces
69
69
70
70
71
71
=============
Original file line number Diff line number Diff line change 2
2
authors = [" MikhailMS <1488maiklm@gmail.com>" ]
3
3
categories = [" network-programming" ]
4
4
description = " Pure Rust implementation of RADIUS Server/Client"
5
- documentation = " https://docs.rs/radius-rust/0.4.2 "
5
+ documentation = " https://docs.rs/radius-rust/0.4.3 "
6
6
edition = " 2018"
7
7
include = [
8
8
" Cargo.toml" ,
@@ -20,7 +20,7 @@ license = "MIT"
20
20
name = " radius-rust"
21
21
readme = " README.md"
22
22
repository = " https://github.com/MikhailMS/rust-radius"
23
- version = " 0.4.2 "
23
+ version = " 0.4.3 "
24
24
25
25
[features ]
26
26
# Default doesn\t include anythin - keep it simple
Original file line number Diff line number Diff line change @@ -29,12 +29,12 @@ Rationale behind this project:
29
29
## Installation
30
30
```
31
31
[dependencies]
32
- radius-rust = "0.4.2 "
32
+ radius-rust = "0.4.3 "
33
33
34
34
OR if you are planning to build Async RADIUS Client/Server
35
35
36
36
[dependencies]
37
- radius-rust = { version = "0.4.2 ", features = ["async-radius"] }
37
+ radius-rust = { version = "0.4.3 ", features = ["async-radius"] }
38
38
```
39
39
40
40
Original file line number Diff line number Diff line change @@ -828,5 +828,4 @@ mod tests {
828
828
829
829
assert_eq ! ( expected_message_authenticator, packet. message_authenticator( ) . unwrap( ) ) ;
830
830
}
831
-
832
831
}
You can’t perform that action at this time.
0 commit comments