-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge the 9.5.0 version into main
- Loading branch information
Showing
37 changed files
with
1,305 additions
and
285 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 |
---|---|---|
|
@@ -33,4 +33,4 @@ nbproject | |
*.iws | ||
*.sublime-project | ||
*.sublime-workspace | ||
screeps.toml | ||
#screeps.toml |
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,5 +1,3 @@ | ||
{ | ||
"rust-analyzer.linkedProjects": [ | ||
"./Cargo.toml" | ||
] | ||
"rust-analyzer.showUnlinkedFileNotification": false | ||
} |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
default_deploy_mode = "upload" | ||
|
||
[build] | ||
# options to allow building code against rust versions >=1.70 without opcodes | ||
# incompatible with screeps server environments; requires nightly rust. See | ||
# https://github.com/rustyscreeps/screeps-game-api/issues/391 | ||
extra_options = ["--config", "build.rustflags=['-Ctarget-cpu=mvp']", "-Z", "build-std=std,panic_abort", "-Z", "build-std-features=panic_immediate_abort"] | ||
|
||
[upload] | ||
auth_token = "fbfeb887-6c37-4ef9-922f-01eea5b927f0" | ||
[upload.build] | ||
build-target="release" | ||
|
||
[ptr] | ||
auth_token = "your screeps.com auth token" | ||
prefix = "ptr" | ||
|
||
[copy] | ||
#destination = "/home/jwjoh/.config/Screeps/scripts/vps_bezoka_pl___21025" | ||
#destination = "/home/jwjoh/.config/Screeps/scripts/127_0_0_1___21025" | ||
destination = "/home/jwjoh/.config/Screeps/scripts/super_directconnect_wyatt_world___21025" | ||
[copy.build] | ||
# set the sim feature to allow for use with the coordinates in the simulation room | ||
extra_options = ["--features=sim", "--config", "build.rustflags=['-Ctarget-cpu=mvp']", "-Z", "build-std=std,panic_abort", "-Z", "build-std-features=panic_immediate_abort", "--debug"] | ||
build-target = "release" | ||
|
||
[season] | ||
auth_token = "your screeps.com auth token" | ||
prefix = "season" | ||
[season.build] | ||
extra_options = ["--features=my-crate-season-1-feature", "--config", "build.rustflags=['-Ctarget-cpu=mvp']", "-Z", "build-std=std,panic_abort", "-Z", "build-std-features=panic_immediate_abort"] | ||
|
||
# for full syntax and available options, see | ||
# https://github.com/rustyscreeps/screeps-game-api/blob/master/screeps-defaults.toml |
Oops, something went wrong.