Skip to content

Commit

Permalink
feat: apply suggestions from code review
Browse files Browse the repository at this point in the history
  • Loading branch information
indietyp committed Oct 5, 2022
1 parent f48f3eb commit bb95c16
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 12 deletions.
5 changes: 3 additions & 2 deletions packages/libs/deer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
[package]
name = "deer"
version = "0.1.0"
version = "0.0.0"
edition = "2021"
publish = false

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand All @@ -13,4 +14,4 @@ default = ['std']
std = []

[workspace]
members = ['.', 'derive']
members = ['.', 'macros']
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
[package]
name = "deer-derive"
version = "0.1.0"
name = "deer-macro"
version = "0.0.0"
edition = "2021"
publish = false

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down
File renamed without changes.
10 changes: 2 additions & 8 deletions packages/libs/deer/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,15 +1,9 @@
//! Intentionally left blank for now!

#![cfg_attr(not(feature = "std"), no_std)]
#![warn(
missing_docs,
unreachable_pub,
clippy::pedantic,
clippy::nursery,
clippy::undocumented_unsafe_blocks
)]
#![warn(missing_docs, unreachable_pub, clippy::pedantic, clippy::nursery)]
#![allow(clippy::redundant_pub_crate)]
#![allow(clippy::module_name_repetitions)]
#![forbid(unsafe_code)]

extern crate alloc;
extern crate core;

0 comments on commit bb95c16

Please sign in to comment.