From 3095d1536defaeecd3bda0e10483589a2ebc1428 Mon Sep 17 00:00:00 2001 From: Chih-Hung Hsieh Date: Thu, 27 Feb 2020 10:42:41 -0800 Subject: Add new remain-0.2.1 * Old remain-0.1.3 uses libsyn-0.15.42 * New remain-0.2.1 uses libsyn-1.0.7 * Fill back missing NOTICE,LICENSE,METADATA,MODULE_LICENSE_* files Bug: 143477201 Bug: 150877376 Test: make Change-Id: Ie33535733e26210ca2ca19ec3fd00f5649faa4db --- Cargo.toml | 39 --------------------------------------- 1 file changed, 39 deletions(-) delete mode 100644 Cargo.toml (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml deleted file mode 100644 index 4134e67..0000000 --- a/Cargo.toml +++ /dev/null @@ -1,39 +0,0 @@ -# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO -# -# When uploading crates to the registry Cargo will automatically -# "normalize" Cargo.toml files for maximal compatibility -# with all versions of Cargo and also rewrite `path` dependencies -# to registry (e.g., crates.io) dependencies -# -# If you believe there's an error in this file please file an -# issue against the rust-lang/cargo repository. If you're -# editing this file be aware that the upstream Cargo.toml -# will likely look very different (and much more reasonable) - -[package] -edition = "2018" -name = "remain" -version = "0.1.3" -authors = ["David Tolnay "] -description = "Compile-time checks that an enum, struct, or match is written in sorted order." -documentation = "https://docs.rs/remain" -readme = "README.md" -license = "MIT OR Apache-2.0" -repository = "https://github.com/dtolnay/remain" - -[lib] -proc-macro = true -[dependencies.proc-macro2] -version = "0.4" - -[dependencies.quote] -version = "0.6" - -[dependencies.syn] -version = "0.15" -features = ["full", "visit-mut"] -[dev-dependencies.select-rustc] -version = "0.1" - -[dev-dependencies.trybuild] -version = "1.0" -- cgit v1.2.3 From 5846f731f46c552ac3a2dc8b38dea64df8aca81a Mon Sep 17 00:00:00 2001 From: Chih-Hung Hsieh Date: Tue, 17 Mar 2020 13:20:31 -0700 Subject: Remove old 0.1.3; used only by old crosvm. * 0.2.1 becomes the default Test: make Bug: 151628085 Change-Id: If095bf4f0fa9e33269df62fc346d5b4d75b0e5aa --- Cargo.toml | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 Cargo.toml (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..46d9a8f --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,42 @@ +# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO +# +# When uploading crates to the registry Cargo will automatically +# "normalize" Cargo.toml files for maximal compatibility +# with all versions of Cargo and also rewrite `path` dependencies +# to registry (e.g., crates.io) dependencies +# +# If you believe there's an error in this file please file an +# issue against the rust-lang/cargo repository. If you're +# editing this file be aware that the upstream Cargo.toml +# will likely look very different (and much more reasonable) + +[package] +edition = "2018" +name = "remain" +version = "0.2.1" +authors = ["David Tolnay "] +description = "Compile-time checks that an enum, struct, or match is written in sorted order." +documentation = "https://docs.rs/remain" +readme = "README.md" +license = "MIT OR Apache-2.0" +repository = "https://github.com/dtolnay/remain" + +[lib] +proc-macro = true +[dependencies.proc-macro2] +version = "1.0" + +[dependencies.quote] +version = "1.0" + +[dependencies.syn] +version = "1.0" +features = ["full", "visit-mut"] +[dev-dependencies.rustversion] +version = "1.0" + +[dev-dependencies.trybuild] +version = "1.0.19" +features = ["diff"] +[badges.travis-ci] +repository = "dtolnay/remain" -- cgit v1.2.3 From 16e11beaa28884abb35f33cd9849bad491d6bd4d Mon Sep 17 00:00:00 2001 From: Haibo Huang Date: Fri, 10 Jul 2020 20:24:21 -0700 Subject: Upgrade rust/crates/remain to 0.2.2 Change-Id: I5090ad4cf3bcd642d320ca40c98d74d3e3f63eef --- Cargo.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml index 46d9a8f..197d26d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,13 +13,15 @@ [package] edition = "2018" name = "remain" -version = "0.2.1" +version = "0.2.2" authors = ["David Tolnay "] description = "Compile-time checks that an enum, struct, or match is written in sorted order." documentation = "https://docs.rs/remain" readme = "README.md" license = "MIT OR Apache-2.0" repository = "https://github.com/dtolnay/remain" +[package.metadata.docs.rs] +targets = ["x86_64-unknown-linux-gnu"] [lib] proc-macro = true @@ -38,5 +40,3 @@ version = "1.0" [dev-dependencies.trybuild] version = "1.0.19" features = ["diff"] -[badges.travis-ci] -repository = "dtolnay/remain" -- cgit v1.2.3