Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Difference From blather-0.12.0 To trunk
|
2025-06-10
| ||
| 22:53 | Dependencies. Leaf check-in: 57cb959ef2 user: jan tags: trunk | |
|
2025-05-18
| ||
| 21:58 | Experiment with CbErr instead of From<Error> for vec encoding/decoding. Leaf check-in: b4da21ab85 user: jan tags: cberr | |
|
2025-05-13
| ||
| 15:55 | Release maintenance. check-in: e2b1017969 user: jan tags: blather-0.12.0, trunk | |
| 15:48 | Document document generation. check-in: 48942b13bc user: jan tags: trunk | |
Changes to Cargo.toml.
| ︙ | ︙ | |||
27 28 29 30 31 32 33 |
bincode = ["dep:bincode", "bin"]
[dependencies]
base85 = { version = "2.0.0", optional = true }
bincode = { version = "2.0.1", optional = true }
bytes = { version = "1.10.1" }
futures = { version = "0.3.31" }
| | | | | 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
bincode = ["dep:bincode", "bin"]
[dependencies]
base85 = { version = "2.0.0", optional = true }
bincode = { version = "2.0.1", optional = true }
bytes = { version = "1.10.1" }
futures = { version = "0.3.31" }
tokio = { version = "1.45.1" }
tokio-util = { version= "0.7.15", features = ["codec"] }
[dev-dependencies]
orphanage = { version = "0.2.7" }
tokio = { version = "1.45.1", features = ["io-util", "macros", "net"] }
tokio-stream = { version = "0.1.17" }
tokio-test = { version = "0.4.4" }
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs", "--generate-link-to-definition"]
|
| ︙ | ︙ |