Skip to content

Commit 65c5b9c

Browse files
committed
prepare for capnpc-v0.16.5 release
1 parent 3b66078 commit 65c5b9c

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

capnpc/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
### v0.16.5
2+
- Use `core::marker` instead of `std::marker` for pointer constants, for no_std compat.
3+
14
### v0.16.4
25
- Generate explicit Clone and Copy impls for Reader structs.
36
- Fully-qualify `::capnp::Word` in generated code.

capnpc/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22

33
name = "capnpc"
4-
version = "0.16.4"
4+
version = "0.16.5"
55
authors = [ "David Renshaw <dwrenshaw@gmail.com>" ]
66
license = "MIT"
77
description = "Cap'n Proto code generation"

capnpc/src/pointer_constants.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ pub fn word_array_declaration(
4848
for index in 0..(words.len() / 8) {
4949
let bytes = &words[(index * 8)..(index + 1) * 8];
5050
words_lines.push(Line(format!(
51-
"capnp::word({}, {}, {}, {}, {}, {}, {}, {}),",
51+
"::capnp::word({}, {}, {}, {}, {}, {}, {}, {}),",
5252
bytes[0], bytes[1], bytes[2], bytes[3], bytes[4], bytes[5], bytes[6], bytes[7]
5353
)));
5454
}

0 commit comments

Comments
 (0)