From 6d927f99d9dc859745ca29b47b23360fd0122053 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20J=C3=B6rdens?= Date: Tue, 28 May 2019 08:40:17 +0000 Subject: [PATCH] cargo: use published serde-json-core --- Cargo.lock | 4 +++- Cargo.toml | 9 +++++---- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 80f366d..8f3d6d3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -223,6 +223,7 @@ dependencies = [ [[package]] name = "serde-json-core" version = "0.0.1" +source = "git+https://github.com/quartiq/serde-json-core.git?rev=6143ac2#6143ac229ec3f5382555f37fe673413c8b46b0cf" dependencies = [ "heapless 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.91 (registry+https://github.com/rust-lang/crates.io-index)", @@ -260,7 +261,7 @@ dependencies = [ "panic-abort 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "panic-semihosting 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.91 (registry+https://github.com/rust-lang/crates.io-index)", - "serde-json-core 0.0.1", + "serde-json-core 0.0.1 (git+https://github.com/quartiq/serde-json-core.git?rev=6143ac2)", "smoltcp 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", "stm32h7 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -344,6 +345,7 @@ dependencies = [ "checksum semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403" "checksum semver-parser 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3" "checksum serde 1.0.91 (registry+https://github.com/rust-lang/crates.io-index)" = "a72e9b96fa45ce22a4bc23da3858dfccfd60acd28a25bcd328a98fdd6bea43fd" +"checksum serde-json-core 0.0.1 (git+https://github.com/quartiq/serde-json-core.git?rev=6143ac2)" = "" "checksum serde_derive 1.0.91 (registry+https://github.com/rust-lang/crates.io-index)" = "101b495b109a3e3ca8c4cbe44cf62391527cdfb6ba15821c5ce80bcd5ea23f9f" "checksum smoltcp 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "fef582369edb298c6c41319a544ca9c4e83622f226055ccfcb35974fbb55ed34" "checksum stable_deref_trait 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "dba1a27d3efae4351c8051072d619e3ade2820635c3958d826bfea39d59b54c8" diff --git a/Cargo.toml b/Cargo.toml index ad5ab45..5dc4552 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -34,15 +34,16 @@ stm32h7 = { version = "0.7", features = ["stm32h7x3", "rt"] } log = "0.4" panic-abort = "0.3" panic-semihosting = { version = "0.5.2", optional = true } -serde-json-core = { version = "0.0" } serde = { version = "1.0", features = ["derive"], default-features = false } heapless = { version = "0.4" } -[patch.crates-io] -serde-json-core = { path = "../serde-json-core" } +[dependencies.serde-json-core] +# version = "0.0" +git = "https://github.com/quartiq/serde-json-core.git" +rev = "6143ac2" [dependencies.smoltcp] -#git = "https://github.com/m-labs/smoltcp" +#git = "https://github.com/m-labs/smoltcp.git" #rev = "cd893e6" version = "0.5" features = ["proto-ipv4", "socket-tcp"]