Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Difference From protwrap-0.2.2 To protwrap-0.3.0
2024-09-11
| ||
01:20 | Dependency management. Start working on pedantic clippy fixups. check-in: f85040367b user: jan tags: trunk | |
2024-05-31
| ||
18:47 | Release maintenance. check-in: e4af9b149d user: jan tags: protwrap-0.3.0, trunk | |
18:21 | Docs. check-in: 33d322a0ba user: jan tags: trunk | |
2024-02-15
| ||
13:04 | Major rewrite. Want to make it easier to be protocol-agnostic on both listener and connector end-point. check-in: 37d2147f15 user: jan tags: trunk | |
2023-10-03
| ||
08:35 | Fix fallout from earlier rename. check-in: 5d761434aa user: jan tags: protwrap-0.2.2, trunk | |
08:27 | Derive Debug. check-in: 8f8b1b9ae6 user: jan tags: protwrap-0.2.1, trunk | |
Changes to .efiles.
1 2 3 4 5 6 | 1 2 3 4 5 6 7 8 9 10 11 12 13 | + + + + + + + | Cargo.toml README.md www/index.md www/changelog.md src/err.rs src/lib.rs src/tokio.rs src/tokio/server.rs src/tokio/server/listener.rs src/tokio/client.rs src/tokio/client/connector.rs tests/listener-acceptor.rs examples/listener-acceptor.rs |
Changes to Cargo.toml.
1 2 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 | - + + - + + + + + + - + + + + + + + + + - + - - - - - + + + + + + + | [package] name = "protwrap" |
Added examples/listener-acceptor.rs.