Skip to content

Commit

Permalink
simplify build
Browse files Browse the repository at this point in the history
Remove build.rs for just a standard relative path include.
  • Loading branch information
pepyakin committed Dec 22, 2023
1 parent fe5f17e commit 77ac85f
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 18 deletions.
2 changes: 0 additions & 2 deletions proc-macro-warning/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@ description = "Emit warnings from inside proc macros."
repository = "https://github.com/ggwpez/proc-macro-warning"
readme.workspace = true

build = "build.rs"

[dependencies]
proc-macro2 = { version = "1.0.68", default-features = false }
quote = { version = "1.0.33", default-features = false }
Expand Down
15 changes: 0 additions & 15 deletions proc-macro-warning/build.rs

This file was deleted.

2 changes: 1 addition & 1 deletion proc-macro-warning/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* SPDX-License-Identifier: (GPL-3.0 or Apache-2.0)
*/

#![doc = include_str!(env!("README_PATH"))]
#![doc = include_str!("../../README.md")]
#![deny(unsafe_code)]
#![deny(missing_docs)]

Expand Down

0 comments on commit 77ac85f

Please sign in to comment.