From 79b247c0aa72fe6ebcd8a2440375ec6696f44b17 Mon Sep 17 00:00:00 2001 From: Keavon Chambers Date: Mon, 20 Dec 2021 14:59:26 -0800 Subject: [PATCH] Set Cargo.toml versions to 0.0.0 to avoid version confusion --- Cargo.lock | 10 +++++----- charcoal/Cargo.toml | 3 ++- editor/Cargo.toml | 3 ++- frontend/wasm/Cargo.toml | 4 ++-- graphene/Cargo.toml | 3 ++- proc-macros/Cargo.toml | 4 ++-- 6 files changed, 15 insertions(+), 12 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 82f2eb93..4cfd4331 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -80,11 +80,11 @@ dependencies = [ [[package]] name = "graphite-charcoal" -version = "0.1.0" +version = "0.0.0" [[package]] name = "graphite-editor" -version = "0.1.0" +version = "0.0.0" dependencies = [ "bitflags", "env_logger", @@ -101,7 +101,7 @@ dependencies = [ [[package]] name = "graphite-graphene" -version = "0.1.0" +version = "0.0.0" dependencies = [ "glam", "kurbo", @@ -112,7 +112,7 @@ dependencies = [ [[package]] name = "graphite-proc-macros" -version = "0.1.0" +version = "0.0.0" dependencies = [ "graphite-editor", "proc-macro2", @@ -122,7 +122,7 @@ dependencies = [ [[package]] name = "graphite-wasm" -version = "0.1.0" +version = "0.0.0" dependencies = [ "graphite-editor", "graphite-graphene", diff --git a/charcoal/Cargo.toml b/charcoal/Cargo.toml index 52057e97..89bc4f34 100644 --- a/charcoal/Cargo.toml +++ b/charcoal/Cargo.toml @@ -1,6 +1,7 @@ [package] name = "graphite-charcoal" -version = "0.1.0" +publish = false +version = "0.0.0" rust-version = "1.56.0" authors = ["Graphite Authors "] edition = "2021" diff --git a/editor/Cargo.toml b/editor/Cargo.toml index 9f839d45..53992b89 100644 --- a/editor/Cargo.toml +++ b/editor/Cargo.toml @@ -1,6 +1,7 @@ [package] name = "graphite-editor" -version = "0.1.0" +publish = false +version = "0.0.0" rust-version = "1.56.0" authors = ["Graphite Authors "] edition = "2021" diff --git a/frontend/wasm/Cargo.toml b/frontend/wasm/Cargo.toml index abcaa2a4..abb61abb 100644 --- a/frontend/wasm/Cargo.toml +++ b/frontend/wasm/Cargo.toml @@ -1,6 +1,7 @@ [package] name = "graphite-wasm" -version = "0.1.0" +publish = false +version = "0.0.0" rust-version = "1.56.0" authors = ["Graphite Authors "] edition = "2021" @@ -8,7 +9,6 @@ readme = "../../README.md" homepage = "https://www.graphite.design" repository = "https://github.com/GraphiteEditor/Graphite" license = "Apache-2.0" -publish = false [lib] crate-type = ["cdylib", "rlib"] diff --git a/graphene/Cargo.toml b/graphene/Cargo.toml index bc75ccdd..65a389b6 100644 --- a/graphene/Cargo.toml +++ b/graphene/Cargo.toml @@ -1,6 +1,7 @@ [package] name = "graphite-graphene" -version = "0.1.0" +publish = false +version = "0.0.0" rust-version = "1.56.0" authors = ["Graphite Authors "] edition = "2021" diff --git a/proc-macros/Cargo.toml b/proc-macros/Cargo.toml index d282cc60..adfdbbbc 100644 --- a/proc-macros/Cargo.toml +++ b/proc-macros/Cargo.toml @@ -1,6 +1,7 @@ [package] name = "graphite-proc-macros" -version = "0.1.0" +publish = false +version = "0.0.0" rust-version = "1.56.0" authors = ["Graphite Authors "] edition = "2021" @@ -8,7 +9,6 @@ readme = "../README.md" homepage = "https://www.graphite.design" repository = "https://github.com/GraphiteEditor/Graphite" license = "Apache-2.0" -publish = false [lib] path = "src/lib.rs"