-
Notifications
You must be signed in to change notification settings - Fork 123
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Split crate into a proc-macro and a regular library crate #214
Changes from 1 commit
6f52e18
012e288
2348a34
30bd893
bbbc918
7cdc829
562d509
9eacb0a
ab9d379
fd90267
0fb046f
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
[package] | ||
name = "derive_more-impl" | ||
version = "0.99.17" | ||
edition = "2021" | ||
rust-version = "1.56.0" | ||
description = "Adds #[derive(x)] macros for more traits" | ||
authors = ["Jelte Fennema <github-tech@jeltef.nl>"] | ||
license = "MIT" | ||
repository = "https://github.com/JelteF/derive_more" | ||
documentation = "https://docs.rs/derive_more" | ||
|
||
# explicitly no keywords or categories so it cannot be found easily | ||
|
||
include = [ | ||
"src/**/*.rs", | ||
"doc/**/*.md", | ||
"Cargo.toml", | ||
"LICENSE", | ||
] | ||
|
||
[lib] | ||
proc-macro = true | ||
|
||
[dependencies] | ||
proc-macro2 = "1.0" | ||
quote = "1.0" | ||
syn = "1.0.81" | ||
convert_case = { version = "0.6", optional = true } | ||
unicode-xid = { version = "0.2.2", optional = true } | ||
|
||
[build-dependencies] | ||
rustc_version = { version = "0.4", optional = true } | ||
|
||
[dev-dependencies] | ||
rustversion = "1.0" | ||
trybuild = "1.0.56" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Seems that we don't need this in the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Meh... we still do need There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Corrected tests and their features in fd90267. |
||
|
||
[badges] | ||
github = { repository = "JelteF/derive_more", workflow = "CI" } | ||
|
||
[features] | ||
add_assign = [] | ||
add = [] | ||
as_mut = [] | ||
as_ref = [] | ||
constructor = [] | ||
deref = [] | ||
deref_mut = [] | ||
display = ["syn/extra-traits", "unicode-xid"] | ||
error = ["syn/extra-traits"] | ||
from = ["syn/extra-traits"] | ||
from_str = ["convert_case"] | ||
index = [] | ||
index_mut = [] | ||
into = ["syn/extra-traits"] | ||
into_iterator = [] | ||
iterator = [] | ||
mul_assign = ["syn/extra-traits"] | ||
mul = ["syn/extra-traits"] | ||
not = ["syn/extra-traits"] | ||
sum = [] | ||
try_into = ["syn/extra-traits"] | ||
testing-helpers = ["rustc_version"] | ||
is_variant = ["convert_case"] | ||
unwrap = ["convert_case", "rustc_version"] | ||
|
||
default = [] |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../LICENSE |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# `derive_more-impl` | ||
|
||
This crate is an implementation detail of the [`derive_more`][crates.io]. If you | ||
found this crate by accident you're probably looking for one of the following | ||
pages of `derive_more`: | ||
1. [crates.io] | ||
2. [docs.rs][docs] | ||
3. [GitHub][github] | ||
|
||
[crates.io]: https://crates.io/crates/derive_more | ||
[docs.rs]: https://docs.rs/derive_more/latest/derive_more/ | ||
[GitHub]: https://github.com/JelteF/derive_more |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this intentionally not
https://docs.rs/derive_more-impl
?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes