Compare commits
101 Commits
743809e853
...
aeca05c2b2
Author | SHA1 | Date | |
---|---|---|---|
aeca05c2b2 | |||
6c8bbf9f83 | |||
712f7fda8d | |||
b679ad9cef | |||
a44ea97420 | |||
205fc39dc3 | |||
7d43635d93 | |||
39d74fa5b9 | |||
482400448b | |||
ab5628d15b | |||
768f4097ad | |||
a2b1b466ae | |||
c357869d34 | |||
0fb752619f | |||
74830570c3 | |||
1ba2430919 | |||
18388e0fc8 | |||
7847f1baaa | |||
c9c8641eba | |||
87dd6ad7c6 | |||
e892cfee36 | |||
23b98efa2d | |||
f554bf08c2 | |||
d30a45618c | |||
d5fc440b10 | |||
fc727422ab | |||
21de91b318 | |||
0da7e74c09 | |||
7742ea17da | |||
150a5cd012 | |||
bf78fc3abf | |||
41dcfd0fb8 | |||
f09cd78c57 | |||
d73a2268a1 | |||
b6bd55afa7 | |||
40039dee9f | |||
3422c2af89 | |||
285fa1b984 | |||
0bf05d056d | |||
113bf913e2 | |||
718acfa696 | |||
add3dcefae | |||
80eb736787 | |||
d88afaa459 | |||
0ea59a0fb0 | |||
268f8fcd64 | |||
3c3a84d9ea | |||
d73f54ce0f | |||
023bf935eb | |||
6c24739c44 | |||
6e89eb03f5 | |||
c4a46a0609 | |||
16f4e815a5 | |||
9d81fc4fff | |||
e83c8389b3 | |||
6d96850c84 | |||
32322ec8c9 | |||
4a19b8eb6b | |||
70981b4f8b | |||
808f3b1acc | |||
cba0bf53e0 | |||
61f98e2e70 | |||
f0dd97dcac | |||
44851be0c0 | |||
fdded8b5ce | |||
df6e2fdae2 | |||
627fbbf399 | |||
cb332240e0 | |||
3a387f7839 | |||
2a9c5d388f | |||
1e573e18f6 | |||
316f3223c7 | |||
45a860fea4 | |||
d39f3229b5 | |||
1e5dc5a712 | |||
952c3f22c9 | |||
229c9bbdd9 | |||
d613f7a1ef | |||
3aa7beb012 | |||
570e40d790 | |||
19a0ae0e7f | |||
e683505314 | |||
e0ad9ad050 | |||
2145b8cd2d | |||
ab765f0da9 | |||
dbc84463d6 | |||
a415c328b1 | |||
ce3bfac99b | |||
386c5f545b | |||
2334bac822 | |||
445dd8ede5 | |||
2db7e9596a | |||
afe09b6cd0 | |||
d0543a193f | |||
e5f9291cd7 | |||
4e6f314e64 | |||
5d38025bb5 | |||
1552c5c678 | |||
f5dd68c255 | |||
ff5bfabe8a | |||
6d03789e08 |
1221
Cargo.lock
generated
1221
Cargo.lock
generated
File diff suppressed because it is too large
Load Diff
18
Cargo.toml
18
Cargo.toml
@ -5,24 +5,24 @@ edition = "2021"
|
|||||||
description = "TCP-over-HTTP solution"
|
description = "TCP-over-HTTP solution"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
clap = { version = "4.5.1", features = ["derive", "env"] }
|
clap = { version = "4.5.4", features = ["derive", "env"] }
|
||||||
log = "0.4.21"
|
log = "0.4.21"
|
||||||
env_logger = "0.11.3"
|
env_logger = "0.11.3"
|
||||||
actix = "0.13.3"
|
actix = "0.13.3"
|
||||||
actix-web = { version = "4", features = ["rustls-0_21"] }
|
actix-web = { version = "4.5.1", features = ["rustls-0_21"] }
|
||||||
actix-web-actors = "4.3.0"
|
actix-web-actors = "4.3.0"
|
||||||
actix-tls = "3.1.1"
|
actix-tls = "3.3.0"
|
||||||
serde = { version = "1.0.197", features = ["derive"] }
|
serde = { version = "1.0.200", features = ["derive"] }
|
||||||
tokio = { version = "1.36.0", features = ["full"] }
|
tokio = { version = "1.37.0", features = ["full"] }
|
||||||
futures = "0.3.30"
|
futures = "0.3.30"
|
||||||
webpki = "0.22.4"
|
webpki = "0.22.4"
|
||||||
x509-parser = "0.16.0"
|
x509-parser = "0.17.0"
|
||||||
pem = "3.0.3"
|
pem = "3.0.4"
|
||||||
reqwest = { version = "0.11.24", features = ["json", "rustls-tls"], default-features = false }
|
reqwest = { version = "0.12.4", features = ["json", "rustls-tls"], default-features = false }
|
||||||
tokio-tungstenite = { version = "0.20.0", features = ["__rustls-tls", "rustls-tls-native-roots"] }
|
tokio-tungstenite = { version = "0.20.0", features = ["__rustls-tls", "rustls-tls-native-roots"] }
|
||||||
urlencoding = "2.1.3"
|
urlencoding = "2.1.3"
|
||||||
hyper-rustls = { version = "0.23.2", features = ["rustls-native-certs"] }
|
hyper-rustls = { version = "0.23.2", features = ["rustls-native-certs"] }
|
||||||
bytes = "1.5.0"
|
bytes = "1.6.0"
|
||||||
rustls-pemfile = "2.0.0"
|
rustls-pemfile = "2.0.0"
|
||||||
rustls = { version = "0.21.0", features = ["dangerous_configuration"] }
|
rustls = { version = "0.21.0", features = ["dangerous_configuration"] }
|
||||||
rustls-native-certs = "0.6.3"
|
rustls-native-certs = "0.6.3"
|
||||||
|
Reference in New Issue
Block a user