diff --git a/application/apps/rustcore/rs-bindings/Cargo.lock b/application/apps/rustcore/rs-bindings/Cargo.lock index 7e1c413fe..cf3c8b324 100644 --- a/application/apps/rustcore/rs-bindings/Cargo.lock +++ b/application/apps/rustcore/rs-bindings/Cargo.lock @@ -1572,7 +1572,7 @@ dependencies = [ "serde_json", "session", "sources", - "thiserror", + "thiserror 1.0.65", "tikv-jemallocator", "tokio", "tokio-util", @@ -1763,7 +1763,7 @@ dependencies = [ "someip-messages", "someip-payload", "someip-tools", - "thiserror", + "thiserror 2.0.3", ] [[package]] @@ -2432,7 +2432,7 @@ name = "someip-tools" version = "0.1.0" dependencies = [ "nom", - "thiserror", + "thiserror 2.0.3", ] [[package]] diff --git a/application/apps/rustcore/rs-bindings/Cargo.toml b/application/apps/rustcore/rs-bindings/Cargo.toml index a9f491249..7a49ba348 100644 --- a/application/apps/rustcore/rs-bindings/Cargo.toml +++ b/application/apps/rustcore/rs-bindings/Cargo.toml @@ -30,6 +30,10 @@ thiserror = "1.0" tokio = { version = "1.24", features = ["full"] } tokio-util = "0.7" uuid = { version = "1.3", features = ["serde", "v4"] } +proto = { path = "../../protocol/proto" } +prost = "0.13" +prost-types = "0.13" + [target.'cfg(unix)'.dependencies] tikv-jemallocator = {version = "0.6" , optional = true } @@ -42,7 +46,4 @@ default = [] # Uses `jemalloc` on Unix-based targets and `mimalloc` on Windows. # This feature won't be enabled by default since these allocators aren't well tested as the defaults. custom-alloc = ['dep:mimalloc', 'dep:tikv-jemallocator'] -proto = { path = "../../protocol/binding/proto" } -proto = { path = "../../protocol/proto" } -prost = "0.13" -prost-types = "0.13" +