aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml.orig
diff options
context:
space:
mode:
authorChih-Hung Hsieh <chh@google.com>2020-10-26 16:54:29 -0700
committerChih-Hung Hsieh <chh@google.com>2020-10-26 16:57:40 -0700
commit127364b149c24623fd15786790a98af3b5355389 (patch)
tree55ba197683b0a0093a2767fcb1f576490157f8a1 /Cargo.toml.orig
parentc112e35face1579eba180108bda3da10b61d9926 (diff)
downloadpin-project-127364b149c24623fd15786790a98af3b5355389.tar.gz
Upgrade rust/crates/pin-project to 1.0.1
* Add missing patches, needed by external_updater Test: make Test: tools/external_updater/updater.sh update --refresh --keep_date rust/crates/pin-project Change-Id: I3738561830ce97903036460713eb3b74700b889e
Diffstat (limited to 'Cargo.toml.orig')
-rw-r--r--Cargo.toml.orig11
1 files changed, 8 insertions, 3 deletions
diff --git a/Cargo.toml.orig b/Cargo.toml.orig
index 1f3ae36..ef428f0 100644
--- a/Cargo.toml.orig
+++ b/Cargo.toml.orig
@@ -1,6 +1,6 @@
[package]
name = "pin-project"
-version = "0.4.23"
+version = "1.0.1"
authors = ["Taiki Endo <te316e89@gmail.com>"]
edition = "2018"
license = "Apache-2.0 OR MIT"
@@ -20,7 +20,7 @@ targets = ["x86_64-unknown-linux-gnu"]
[workspace]
members = [
"pin-project-internal",
- "tests/ui/auxiliary",
+ "tests/auxiliary/macro",
"tests/doc",
"tests/expand",
"tests/no-core",
@@ -29,5 +29,10 @@ members = [
]
[dependencies]
-pin-project-internal = { version = "=0.4.23", path = "pin-project-internal", default-features = false }
+pin-project-internal = { version = "=1.0.1", path = "pin-project-internal", default-features = false }
+[dev-dependencies]
+pin-project-auxiliary-macro = { version = "0", path = "tests/auxiliary/macro" }
+rustversion = "1"
+static_assertions = "1"
+trybuild = "1"