Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ path = "src/lib.rs"

[dependencies]
anyhow = "1.0.95"
capnp = "0.23.0"
capnp = "0.24.0"
caracat = "1.4.2"
chrono = "0.4.41"
clap = { version = "4.5.20", features = ["derive"] }
Expand All @@ -42,7 +42,7 @@ tracing-subscriber = "0.3.19"
uuid = { version = "1.8", features = ["v4", "fast-rng"] }

[build-dependencies]
capnpc = "0.23.0"
capnpc = "0.24.0"

[dev-dependencies]
tempfile = "3.10"
12 changes: 6 additions & 6 deletions src/probe_capnp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -314,12 +314,12 @@ pub mod probe {
pub fn get_annotation_types(child_index: Option<u16>, index: u32) -> ::capnp::introspect::Type {
::capnp::introspect::panic_invalid_annotation_indices(child_index, index)
}
pub static RAW_SCHEMA: ::capnp::introspect::RawStructSchema = ::capnp::introspect::RawStructSchema {
encoded_node: &ENCODED_NODE,
nonunion_members: NONUNION_MEMBERS,
members_by_discriminant: MEMBERS_BY_DISCRIMINANT,
members_by_name: MEMBERS_BY_NAME,
};
pub static RAW_SCHEMA: ::capnp::introspect::RawStructSchema = unsafe {::capnp::introspect::RawStructSchema::new(
&ENCODED_NODE,
NONUNION_MEMBERS,
MEMBERS_BY_DISCRIMINANT,
MEMBERS_BY_NAME
)};
pub static NONUNION_MEMBERS : &[u16] = &[0,1,2,3,4];
pub static MEMBERS_BY_DISCRIMINANT : &[u16] = &[];
pub static MEMBERS_BY_NAME : &[u16] = &[0,2,4,1,3];
Expand Down
24 changes: 12 additions & 12 deletions src/reply_capnp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -838,12 +838,12 @@ pub mod reply {
pub fn get_annotation_types(child_index: Option<u16>, index: u32) -> ::capnp::introspect::Type {
::capnp::introspect::panic_invalid_annotation_indices(child_index, index)
}
pub static RAW_SCHEMA: ::capnp::introspect::RawStructSchema = ::capnp::introspect::RawStructSchema {
encoded_node: &ENCODED_NODE,
nonunion_members: NONUNION_MEMBERS,
members_by_discriminant: MEMBERS_BY_DISCRIMINANT,
members_by_name: MEMBERS_BY_NAME,
};
pub static RAW_SCHEMA: ::capnp::introspect::RawStructSchema = unsafe {::capnp::introspect::RawStructSchema::new(
&ENCODED_NODE,
NONUNION_MEMBERS,
MEMBERS_BY_DISCRIMINANT,
MEMBERS_BY_NAME
)};
pub static NONUNION_MEMBERS : &[u16] = &[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20];
pub static MEMBERS_BY_DISCRIMINANT : &[u16] = &[];
pub static MEMBERS_BY_NAME : &[u16] = &[1,13,19,14,17,15,12,18,16,3,10,9,4,11,8,7,5,2,6,20,0];
Expand Down Expand Up @@ -1117,12 +1117,12 @@ pub mod mpls {
pub fn get_annotation_types(child_index: Option<u16>, index: u32) -> ::capnp::introspect::Type {
::capnp::introspect::panic_invalid_annotation_indices(child_index, index)
}
pub static RAW_SCHEMA: ::capnp::introspect::RawStructSchema = ::capnp::introspect::RawStructSchema {
encoded_node: &ENCODED_NODE,
nonunion_members: NONUNION_MEMBERS,
members_by_discriminant: MEMBERS_BY_DISCRIMINANT,
members_by_name: MEMBERS_BY_NAME,
};
pub static RAW_SCHEMA: ::capnp::introspect::RawStructSchema = unsafe {::capnp::introspect::RawStructSchema::new(
&ENCODED_NODE,
NONUNION_MEMBERS,
MEMBERS_BY_DISCRIMINANT,
MEMBERS_BY_NAME
)};
pub static NONUNION_MEMBERS : &[u16] = &[0,1,2,3];
pub static MEMBERS_BY_DISCRIMINANT : &[u16] = &[];
pub static MEMBERS_BY_NAME : &[u16] = &[1,0,2,3];
Expand Down