-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
gerdoe-jr
committed
Jul 30, 2024
1 parent
6636bc1
commit 73f0afc
Showing
70 changed files
with
1,329 additions
and
1,716 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -12,3 +12,5 @@ Cargo.lock | |
|
||
# MSVC Windows builds of rustc generate these, which store debugging information | ||
*.pdb | ||
|
||
.vscode/ |
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,83 +1,3 @@ | ||
[package] | ||
name = "gores-mapgen-rust" | ||
version = "1.0.0" | ||
edition = "2021" | ||
default-run = "gores-generator" | ||
|
||
# [features] | ||
# ddnet_bridge = ["dep:regex", "dep:telnet"] | ||
|
||
[[bin]] | ||
name = "gores-generator" | ||
path = "src/main.rs" | ||
|
||
[[bin]] | ||
name = "camera_test" | ||
|
||
[[bin]] | ||
name = "kernel_test" | ||
|
||
[[bin]] | ||
name = "twmap_test" | ||
|
||
[[bin]] | ||
name = "ddnet_bridge" | ||
|
||
[[bin]] | ||
name = "check_generator" | ||
|
||
[[bin]] | ||
name = "automap_test" | ||
|
||
[dependencies] | ||
# egui-macroquad = { git = "https://github.com/optozorax/egui-macroquad", default-features = false, rev="dfbdb967d6cf4e4726b84a568ec1b2bdc7e4f492" } | ||
# macroquad = "0.4.4" | ||
# egui = "0.25.0" | ||
egui_struct = { version = "0.4", default-features = false, features = [ "egui21" ] } | ||
egui-macroquad = "0.15.0" | ||
|
||
egui = "0.21.0" | ||
egui-miniquad = "0.14.0" | ||
macroquad = "0.3.25" | ||
|
||
ndarray = "0.15.6" | ||
rand = {version="0.8.5", features=['small_rng']} | ||
seahash = "4.1.0" | ||
rand_distr = "0.4.3" | ||
itertools = "0.12.1" | ||
twmap = "0.12.0" | ||
telnet = "0.2.1" | ||
regex = "1.10.4" | ||
clap = { version = "4.5.4", features = ["derive", "cargo"] } | ||
dirs = "5.0.1" | ||
serde = "1.0.197" | ||
serde_json = "1.0.115" | ||
rust-embed = "8.3.0" | ||
tinyfiledialogs = "3.9.1" | ||
|
||
|
||
# dt = "1.0.6" | ||
dt = {git = "https://github.com/iMilchshake/dt"} | ||
derivative = "2.2.0" | ||
timing = "0.2.3" | ||
log = "0.4.21" | ||
simple_logger = "5.0.0" | ||
|
||
|
||
[dev-dependencies] | ||
telnet = { version = "0.2.1"} | ||
|
||
# Enable a small amount of optimization in debug mode | ||
[profile.dev] | ||
opt-level = 1 | ||
|
||
# Enable high optimizations for dependencies, but not for our code: | ||
[profile.dev.package."*"] | ||
opt-level = 3 | ||
|
||
[profile.release] | ||
opt-level = 3 | ||
# panic = "abort" # abort on panic!() | ||
lto = true # enable link time optimization | ||
strip = true # strip debug symbols | ||
codegen-units = 1 # use a single codegen-unit for better optimizations | ||
[workspace] | ||
resolver = "2" | ||
members = ["core", "bridge", "exporter", "gui"] |
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
[package] | ||
name = "bridge" | ||
version = "0.1.0" | ||
edition = "2021" | ||
|
||
[dependencies] | ||
clap = { version = "4.5.4", features = ["derive", "cargo"] } | ||
itertools = "0.12.1" | ||
|
||
log = "0.4.21" | ||
simple_logger = "5.0.0" | ||
|
||
serde = "1.0.197" | ||
serde_json = "1.0.115" | ||
regex = "1.10.4" | ||
|
||
twmap = "0.12.0" | ||
mapgen_core = { package = "core", path = "../core" } | ||
mapgen_exporter = { package = "exporter", path = "../exporter" } |
File renamed without changes.
Oops, something went wrong.