-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #45 from BVE-Reborn/versioning
Start Versioning BVE
- Loading branch information
Showing
12 changed files
with
35 additions
and
31 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 <[email protected]>"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 <[email protected]>"] | ||
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" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 <[email protected]>"] | ||
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" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 <[email protected]>"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 <[email protected]>"] | ||
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" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[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 <[email protected]>"] | ||
|
@@ -18,6 +18,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" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 <[email protected]>"] | ||
|
@@ -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] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 <[email protected]>"] | ||
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" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 <[email protected]>"] | ||
|
@@ -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" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters