-
-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This temporarily moves the document of attribute macros to pin-project-internal.
- Loading branch information
Showing
6 changed files
with
417 additions
and
375 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
[package] | ||
name = "pin-project" | ||
# NB: When modifying, also modify html_root_url in lib.rs | ||
version = "0.3.4" | ||
version = "0.4.0-alpha.1" | ||
authors = ["Taiki Endo <[email protected]>"] | ||
edition = "2018" | ||
license = "Apache-2.0/MIT" | ||
description = "An attribute that creates a projection struct covering all the fields." | ||
description = "A crate for safe and ergonomic pin-projection." | ||
repository = "https://github.com/taiki-e/pin-project" | ||
documentation = "https://docs.rs/pin-project/" | ||
readme = "README.md" | ||
|
@@ -22,7 +22,10 @@ project_attr = ["pin-project-internal/project_attr"] | |
renamed = ["pin-project-internal/renamed"] | ||
|
||
[dependencies] | ||
pin-project-internal = { version = "0.3.4", path = "pin-project-internal", default-features = false } | ||
pin-project-internal = { version = "=0.4.0-alpha.1", path = "pin-project-internal", default-features = false } | ||
|
||
[dev-dependencies] | ||
compiletest = { version = "0.3.21", package = "compiletest_rs", features = ["stable", "tmp"] } | ||
|
||
[package.metadata.docs.rs] | ||
all-features = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "pin-project-internal" | ||
# NB: When modifying, also modify html_root_url in lib.rs | ||
version = "0.3.4" | ||
version = "0.4.0-alpha.1" | ||
authors = ["Taiki Endo <[email protected]>"] | ||
edition = "2018" | ||
license = "Apache-2.0/MIT" | ||
|
@@ -29,3 +29,9 @@ proc-macro-crate = { version = "0.1.4", optional = true } | |
# and proc-macro-crate updates to that new version of toml-rs. | ||
serde = { version = "1.0.97", optional = true } | ||
lazy_static = { version = "1.3.0", optional = true } | ||
|
||
[dev-dependencies] | ||
pin-project = { version = "=0.4.0-alpha.1", path = ".." } | ||
|
||
[package.metadata.docs.rs] | ||
all-features = true |
Oops, something went wrong.