diff --git a/Cargo.lock b/Cargo.lock index c5fea0e..dbe9e07 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -153,7 +153,7 @@ dependencies = [ [[package]] name = "bve" -version = "0.0.0-Placeholder" +version = "0.0.1" dependencies = [ "bincode", "bve-derive", @@ -187,7 +187,7 @@ dependencies = [ [[package]] name = "bve-build" -version = "0.0.0-Placeholder" +version = "0.1.0" dependencies = [ "cbindgen", "structopt", @@ -195,7 +195,7 @@ dependencies = [ [[package]] name = "bve-client" -version = "0.0.0-Placeholder" +version = "0.0.1" dependencies = [ "bve", "bve-rex", @@ -204,7 +204,7 @@ dependencies = [ [[package]] name = "bve-corpus" -version = "0.0.0-Placeholder" +version = "0.1.0" dependencies = [ "anyhow", "backtrace", @@ -225,7 +225,7 @@ dependencies = [ [[package]] name = "bve-derive" -version = "0.0.0-Placeholder" +version = "0.0.1" dependencies = [ "darling", "itertools", @@ -236,7 +236,7 @@ dependencies = [ [[package]] name = "bve-fuzz" -version = "0.0.0-Placeholder" +version = "0.0.1" dependencies = [ "bve", "honggfuzz", @@ -244,7 +244,7 @@ dependencies = [ [[package]] name = "bve-native" -version = "0.0.0-Placeholder" +version = "0.0.1" dependencies = [ "backtrace", "bve", @@ -254,7 +254,7 @@ dependencies = [ [[package]] name = "bve-rex" -version = "0.0.0-Placeholder" +version = "0.0.1" dependencies = [ "bve-derive", "bve-rex-sys", @@ -262,7 +262,7 @@ dependencies = [ [[package]] name = "bve-rex-sys" -version = "0.0.0-Placeholder" +version = "0.0.1" dependencies = [ "bindgen", "bve-derive", diff --git a/bve-build/Cargo.toml b/bve-build/Cargo.toml index 375fa8d..b00bbf7 100644 --- a/bve-build/Cargo.toml +++ b/bve-build/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bve-build" -version = "0.0.0-Placeholder" +version = "0.1.0" description = "Remaking OpenBVE using a modern architecture, using Unity and Rust." license = "MPL-2.0" authors = ["Connor Fitzgerald "] diff --git a/bve-client/Cargo.toml b/bve-client/Cargo.toml index 9be2b42..d508553 100644 --- a/bve-client/Cargo.toml +++ b/bve-client/Cargo.toml @@ -1,10 +1,11 @@ [package] name = "bve-client" -version = "0.0.0-Placeholder" +version = "0.0.1" description = "BVE-Reborn's main game client" license = "MPL-2.0" authors = ["Connor Fitzgerald "] edition = "2018" +publish = false repository = "https://gitlab.bvereborn.com/bve-reborn/bve-reborn" readme = "README.md" @@ -14,6 +15,6 @@ keywords = ["bve", "rex", "engine"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -bve = { version = "0.0.0-Placeholder", path = "../bve" } -bve-rex = { version = "0.0.0-Placeholder", path = "../bve-rex" } -bve-rex-sys = { version = "0.0.0-Placeholder", path = "../bve-rex-sys" } +bve = { version = "0.0.1", path = "../bve" } +bve-rex = { version = "0.0.1", path = "../bve-rex" } +bve-rex-sys = { version = "0.0.1", path = "../bve-rex-sys" } diff --git a/bve-corpus/Cargo.toml b/bve-corpus/Cargo.toml index e53fa97..7dcc728 100644 --- a/bve-corpus/Cargo.toml +++ b/bve-corpus/Cargo.toml @@ -1,10 +1,11 @@ [package] name = "bve-corpus" -version = "0.0.0-Placeholder" +version = "0.1.0" description = "Program to run bve parsers against the entire corpus" license = "MPL-2.0" authors = ["Connor Fitzgerald "] edition = "2018" +publish = false repository = "https://gitlab.bvereborn.com/bve-reborn/bve-reborn" readme = "README.md" @@ -16,7 +17,7 @@ keywords = ["bve", "serialization", "simulation"] [dependencies] anyhow = "1.0.26" backtrace = "0.3.42" -bve = { version = "0.0.0-Placeholder", path = "../bve" } +bve = { version = "0.0.1", path = "../bve" } clap = "2.33.0" crossbeam = "0.7.3" indicatif = "0.14.0" diff --git a/bve-derive/Cargo.toml b/bve-derive/Cargo.toml index a16efae..59dc43b 100644 --- a/bve-derive/Cargo.toml +++ b/bve-derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bve-derive" -version = "0.0.0-Placeholder" +version = "0.0.1" description = "Remaking OpenBVE using a modern architecture, using Unity and Rust." license = "MPL-2.0" authors = ["Connor Fitzgerald "] diff --git a/bve-fuzz/Cargo.toml b/bve-fuzz/Cargo.toml index fab5eea..c46e0aa 100644 --- a/bve-fuzz/Cargo.toml +++ b/bve-fuzz/Cargo.toml @@ -1,10 +1,11 @@ [package] name = "bve-fuzz" -version = "0.0.0-Placeholder" +version = "0.0.1" description = "Remaking OpenBVE using a modern architecture, using Unity and Rust." license = "MPL-2.0" authors = ["Connor Fitzgerald "] edition = "2018" +publish = false repository = "https://gitlab.bvereborn.com/bve-reborn/bve-reborn" readme = "README.md" @@ -14,7 +15,7 @@ keywords = ["bve", "serialization", "simulation"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -bve = { version = "0.0.0-Placeholder", path = "../bve" } +bve = { version = "0.0.1", path = "../bve" } [target.'cfg(target_os = "linux")'.dependencies] honggfuzz = "0.5.45" diff --git a/bve-native/Cargo.toml b/bve-native/Cargo.toml index b57e40a..2f1d530 100644 --- a/bve-native/Cargo.toml +++ b/bve-native/Cargo.toml @@ -1,10 +1,11 @@ [package] name = "bve-native" -version = "0.0.0-Placeholder" +version = "0.0.1" description = "Remaking OpenBVE using a modern architecture, using Unity and Rust. C API." license = "MPL-2.0" authors = ["Connor Fitzgerald "] edition = "2018" +publish = false repository = "https://gitlab.bvereborn.com/bve-reborn/bve-reborn" readme = "README.md" @@ -18,6 +19,6 @@ crate-type = ["cdylib"] [dependencies] backtrace = "0.3.42" -bve = { version = "0.0.0-Placeholder", path = "../bve" } -bve-derive = { version = "0.0.0-Placeholder", path = "../bve-derive" } +bve = { version = "0.0.1", path = "../bve" } +bve-derive = { version = "0.0.1", path = "../bve-derive" } libc = "0.2.66" diff --git a/bve-rex-sys/Cargo.toml b/bve-rex-sys/Cargo.toml index 01a3138..649ca20 100644 --- a/bve-rex-sys/Cargo.toml +++ b/bve-rex-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bve-rex-sys" -version = "0.0.0-Placeholder" +version = "0.0.1" description = "C bindings to BVE's fork of Rex" license = "MPL-2.0" authors = ["Connor Fitzgerald "] @@ -16,7 +16,7 @@ links = "bverex" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -bve-derive = { version = "0.0.0-Placeholder", path = "../bve-derive" } +bve-derive = { version = "0.0.1", path = "../bve-derive" } sdl2-sys = { version = "0.33.0", features = ["bundled"] } [build-dependencies] diff --git a/bve-rex/Cargo.toml b/bve-rex/Cargo.toml index eba3b31..08ef4e1 100644 --- a/bve-rex/Cargo.toml +++ b/bve-rex/Cargo.toml @@ -1,10 +1,11 @@ [package] name = "bve-rex" -version = "0.0.0-Placeholder" +version = "0.0.1" description = "Rusty Interface to BVE's fork of Rex" license = "MPL-2.0" authors = ["Connor Fitzgerald "] edition = "2018" +publish = false repository = "https://gitlab.bvereborn.com/bve-reborn/bve-reborn" readme = "README.md" @@ -14,5 +15,5 @@ keywords = ["bve", "rex", "engine"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -bve-derive = { version = "0.0.0-Placeholder", path = "../bve-derive" } -bve-rex-sys = { version = "0.0.0-Placeholder", path = "../bve-rex-sys" } +bve-derive = { version = "0.0.1", path = "../bve-derive" } +bve-rex-sys = { version = "0.0.1", path = "../bve-rex-sys" } diff --git a/bve/Cargo.toml b/bve/Cargo.toml index 4878689..c87e4b6 100644 --- a/bve/Cargo.toml +++ b/bve/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bve" -version = "0.0.0-Placeholder" +version = "0.0.1" description = "Remaking OpenBVE using a modern architecture, using Unity and Rust." license = "MPL-2.0" authors = ["Connor Fitzgerald "] @@ -15,7 +15,7 @@ keywords = ["bve", "serialization", "simulation"] [dependencies] bincode = "1.2.1" -bve-derive = { version = "0.0.0-Placeholder", path = "../bve-derive" } +bve-derive = { version = "0.0.1", path = "../bve-derive" } cgmath = { version = "0.17", features = ["serde"] } chardetng = "0.1.3" crossbeam = "0.7.3"