updated capnp version

This commit is contained in:
Debanjan Basu 2024-05-14 22:46:44 +10:00
parent 81134bad67
commit 27d0037c56
4 changed files with 375 additions and 217 deletions

12
Cargo.lock generated
View File

@ -823,18 +823,18 @@ checksum = "514de17de45fdb8dc022b1a7975556c53c86f9f0aa5f534b98977b171857c2c9"
[[package]]
name = "capnp"
version = "0.18.13"
version = "0.19.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "384b671a5b39eadb909b0c2b81d22a400d446526e651e64be9eb6674b33644a4"
checksum = "5e7c000b063857f2fa3178ff540dd92111f8cea880fd74f555bbda4eab909717"
dependencies = [
"embedded-io",
]
[[package]]
name = "capnpc"
version = "0.18.1"
version = "0.19.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a642faaaa78187e70bdcc0014c593c213553cfeda3b15054426d0d596048b131"
checksum = "c75ba30e0f08582d53c2f3710cf4bb65ff562614b1ba86906d7391adffe189ec"
dependencies = [
"capnp",
]
@ -1697,9 +1697,9 @@ checksum = "a47c1c47d2f5964e29c61246e81db715514cd532db6b5116a25ea3c03d6780a2"
[[package]]
name = "embedded-io"
version = "0.5.0"
version = "0.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "658bbadc628dc286b9ae02f0cb0f5411c056eb7487b72f0083203f115de94060"
checksum = "edd0f118536f44f5ccd48bcb8b111bdc3de888b58c74639dfb034a357d0f206d"
[[package]]
name = "encode_unicode"

View File

@ -124,7 +124,7 @@ async-std-resolver = { version = "0.24.0", optional = true }
hickory-resolver = { version = "0.24.0", optional = true }
# Serialization
capnp = { version = "0.18.10", default-features = false, features = ["alloc"] }
capnp = { version = "0.19.4", default-features = false, features = ["alloc"] }
serde = { version = "1.0.193", features = ["derive", "rc"] }
serde_json = { version = "1.0.108" }
serde-big-array = "0.5.1"
@ -269,7 +269,7 @@ wasm-logger = "0.2.0"
### BUILD OPTIONS
[build-dependencies]
capnpc = "0.18.0"
capnpc = "0.19.0"
glob = "0.3.1"
filetime = "0.2.23"
sha2 = "0.10.8"

View File

@ -8,7 +8,7 @@ use std::{
process::{Command, Stdio},
};
const CAPNP_VERSION: &str = "1.0.1";
const CAPNP_VERSION: &str = "1.0.2";
fn get_desired_capnp_version_string() -> String {
CAPNP_VERSION.to_string()

File diff suppressed because it is too large Load Diff