From 31823d13fa8426e71668ab81df17a282face9d94 Mon Sep 17 00:00:00 2001 From: Herbert Wolverson Date: Tue, 16 Jul 2024 09:07:48 -0500 Subject: [PATCH] Lock the version of PyO3 because of API changes making the newer version a really big implementation task. --- src/rust/Cargo.lock | 1 + src/rust/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/rust/Cargo.lock b/src/rust/Cargo.lock index 4b936fe9..af8d755d 100644 --- a/src/rust/Cargo.lock +++ b/src/rust/Cargo.lock @@ -2060,6 +2060,7 @@ dependencies = [ "default-net", "lqos_config", "toml", + "uuid", ] [[package]] diff --git a/src/rust/Cargo.toml b/src/rust/Cargo.toml index 0ce5b7db..b74586dd 100644 --- a/src/rust/Cargo.toml +++ b/src/rust/Cargo.toml @@ -62,7 +62,7 @@ zerocopy = {version = "0.6.1", features = [ "simd" ] } sysinfo = "0" default-net = "0" reqwest = { version = "0", features = ["json", "blocking"] } -pyo3 = "0" +pyo3 = "0.20.3" colored = "2" miniz_oxide = "0.7" byteorder = "1"