Skip to content

Commit

Permalink
1. Minor updates
Browse files Browse the repository at this point in the history
  • Loading branch information
denisandroid committed Mar 30, 2024
1 parent b70d945 commit 21d9718
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ license = "MIT/Apache-2.0"
readme = "README.md"

description = "Macro for effortlessly duplicating impl block code across various types in Rust."
keywords = ["copy_impl", "macro", "code-transformation", "clucompany"]
categories = ["development-tools", "development-tools::build-utils"]
keywords = ["copy_impl", "macro", "code-transformation", "no_std", "clucompany"]
categories = ["development-tools"]

[dependencies]
1 change: 0 additions & 1 deletion examples/num.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ use std::{error::Error, fmt::Write};
use copy_impl::copy_impl;

struct CustomNum<T>(T);

struct UncheckedCustomNum<T>(T);

copy_impl! {
Expand Down
2 changes: 0 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ use std::{error::Error, fmt::Write};
use copy_impl::copy_impl;
struct CustomNum<T>(T);
struct UncheckedCustomNum<T>(T);
copy_impl! {
Expand Down Expand Up @@ -85,7 +84,6 @@ fn main() -> Result<(), Box<dyn Error>> {
*/

#![allow(non_snake_case)]
#![no_std]

///
Expand Down

0 comments on commit 21d9718

Please sign in to comment.