Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
taiki-e committed Sep 10, 2020
1 parent f620837 commit e3c9c92
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
5 changes: 3 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pin-project"
version = "0.4.23"
version = "1.0.0"
authors = ["Taiki Endo <[email protected]>"]
edition = "2018"
license = "Apache-2.0 OR MIT"
Expand All @@ -13,6 +13,7 @@ readme = "README.md"
description = """
A crate for safe and ergonomic pin-projection.
"""
publish = false

[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
Expand All @@ -29,7 +30,7 @@ members = [
]

[dependencies]
pin-project-internal = { version = "=0.4.23", path = "pin-project-internal", default-features = false }
pin-project-internal = { version = "=1.0.0", path = "pin-project-internal", default-features = false }

[dev-dependencies]
auxiliary-macros = { version = "0.1", path = "tests/ui/auxiliary" }
Expand Down
5 changes: 3 additions & 2 deletions pin-project-internal/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pin-project-internal"
version = "0.4.23"
version = "1.0.0"
authors = ["Taiki Endo <[email protected]>"]
edition = "2018"
license = "Apache-2.0 OR MIT"
Expand All @@ -12,6 +12,7 @@ categories = ["no-std", "rust-patterns"]
description = """
An internal crate to support pin_project - do not use directly
"""
publish = false

[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
Expand All @@ -25,5 +26,5 @@ quote = "1.0"
syn = { version = "1.0.13", features = ["full", "visit-mut"] }

[dev-dependencies]
pin-project = { version = "0.4.23", path = ".." }
pin-project = { version = "1.0.0", path = ".." }
rustversion = "1.0"

0 comments on commit e3c9c92

Please sign in to comment.