From 35a92dfc3c662a2584a7ca3964ac463fea7c4817 Mon Sep 17 00:00:00 2001 From: Joshua Rudolph Date: Mon, 26 Aug 2024 14:58:23 -0500 Subject: [PATCH] CI updates --- .github/workflows/ci.yml | 10 +++++----- src/any.rs | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 22c4cef..78bc6ee 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -70,11 +70,11 @@ jobs: command: build args: --no-default-features - - name: Test - uses: actions-rs/cargo@v1 - with: - command: test - args: --package transient --lib --no-default-features +# - name: Test +# uses: actions-rs/cargo@v1 +# with: +# command: test +# args: --package transient --lib --no-default-features # test-derive: # name: Test Derive Macro diff --git a/src/any.rs b/src/any.rs index c05c56f..7737bbd 100644 --- a/src/any.rs +++ b/src/any.rs @@ -11,7 +11,7 @@ use std::marker::{Send, Sync}; pub use std::any::type_name; /// Re-export from the [`std::any`] module. -#[rustversion::since(1.76)] +// #[rustversion::since(1.76)] pub use std::any::type_name_of_val; ///////////////////////////////////////////////////////////////////////////////