Skip to content

Commit

Permalink
Disable unnecessary default features.
Browse files Browse the repository at this point in the history
  • Loading branch information
raldone01 committed Dec 19, 2024
1 parent b02d255 commit 75cf988
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 25 deletions.
21 changes: 0 additions & 21 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 10 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -88,10 +88,16 @@ categories = ["development-tools::procedural-macro-helpers"]
keywords = ["proc-macro", "nightly"]

[dependencies]
tracing = "0.1"
syn = "2.0"
thiserror = "2.0"
toml_edit = "0.22"
tracing = { version = "0.1", default-features = false }
syn = { version = "2.0", default-features = false, features = [
"derive",
"parsing",
] }
thiserror = { version = "2.0", default-features = false }
toml_edit = { version = "0.22", default-features = false, features = ["parse"] }

[dev-dependencies]
syn = { version = "2.0", default-features = false, features = ["proc-macro"] }

[lints]
workspace = true
Expand Down

0 comments on commit 75cf988

Please sign in to comment.