From 207fa55bf3d69ca722a11897135bf5022bd2b985 Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Sun, 14 Aug 2022 19:51:51 +0200 Subject: [PATCH] disable std by default for downcast --- .idea/runConfigurations/Doctest.xml | 19 +++++++++++++++++++ fsrc-core/Cargo.toml | 7 +++---- 2 files changed, 22 insertions(+), 4 deletions(-) create mode 100644 .idea/runConfigurations/Doctest.xml diff --git a/.idea/runConfigurations/Doctest.xml b/.idea/runConfigurations/Doctest.xml new file mode 100644 index 0000000..73a8b79 --- /dev/null +++ b/.idea/runConfigurations/Doctest.xml @@ -0,0 +1,19 @@ + + + + \ No newline at end of file diff --git a/fsrc-core/Cargo.toml b/fsrc-core/Cargo.toml index 28a7c2a..f3c9cd2 100644 --- a/fsrc-core/Cargo.toml +++ b/fsrc-core/Cargo.toml @@ -9,14 +9,13 @@ edition = "2021" thiserror = "1.0" bus = "2.2.3" num = "0.4" -downcast-rs = { version = "1.2.0" } [dependencies.spacepackets] path = "../spacepackets" -#[dependencies.downcast-rs] -#version = "1.2.0" -#default-features = false +[dependencies.downcast-rs] +version = "1.2.0" +default-features = false [dev-dependencies] postcard = { version = "1.0.1", features = ["use-std"] }