From f0f78f7fc7f2930d2e91f2ed7a6c5db4bd1c0155 Mon Sep 17 00:00:00 2001 From: Soispha Date: Sun, 24 Mar 2024 20:09:53 +0100 Subject: [PATCH] fixup! refactor(macros/convertible_derive): Generate the `Convertible` Trait impl --- trixy-types/Cargo.toml | 1 - trixy-types/src/traits/convert_trait.rs | 2 -- 2 files changed, 3 deletions(-) diff --git a/trixy-types/Cargo.toml b/trixy-types/Cargo.toml index 3fc04c3..7c455dd 100644 --- a/trixy-types/Cargo.toml +++ b/trixy-types/Cargo.toml @@ -30,4 +30,3 @@ proc-macro2 = "1.0.70" quote = "1.0.33" syn = { version = "2.0.41", features = ["extra-traits", "full", "parsing"] } thiserror = "1.0.51" -trixy-types-derive = {path = "./trixy-types-derive"} diff --git a/trixy-types/src/traits/convert_trait.rs b/trixy-types/src/traits/convert_trait.rs index 4862ea2..8971e18 100644 --- a/trixy-types/src/traits/convert_trait.rs +++ b/trixy-types/src/traits/convert_trait.rs @@ -30,8 +30,6 @@ use std::{ use super::errno; -pub use trixy_types_derive::Convertible; - /// Convert a value into a data structure that we can send directly to c. pub trait Convertible where