diff --git a/Cargo.toml b/Cargo.toml index 4b145a5..2f6465e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,12 +12,15 @@ edition = "2021" rust-version = "1.81.0" exclude = ["tests/resources/*"] +[patch.crates-io] +thiserror = { git = "https://github.com/quartiq/thiserror.git", branch = "no-std" } + [dependencies] arbitrary-int = { version = "1.2.7", default-features = false } fixed = "1.28.0" heapless = "0.8.0" nom = { version = "7.1.3", default-features = false } -thiserror = { version = "1.0", git = "https://github.com/quartiq/thiserror.git", default-features = false, branch = "no-std" } +thiserror = { version = "1.0", default-features = false } [dev-dependencies] reqwest = { version = "0.12.7", features = ["blocking"] }