Skip to content

Commit 73c8cea

Browse files
committed
Rename project sub-sections.
1 parent 5753183 commit 73c8cea

36 files changed

+99
-1140
lines changed

.travis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,8 @@ script:
7070
- |
7171
# cargo test
7272
if $RUN_TEST; then
73-
cargo test --target "$TARGET" -p scrs-network --verbose -j 1
74-
cargo test --target "$TARGET" -p screeps-rs --verbose -j 1
73+
cargo test --target "$TARGET" -p screeps-rs-network --verbose -j 1
74+
cargo test --target "$TARGET" -p screeps-rs-ui --verbose -j 1
7575
fi
7676
- |
7777
# cargo build --release
@@ -80,7 +80,7 @@ script:
8080
fi
8181
before_deploy:
8282
- cargo build --target "$TARGET" --verbose --release -j 1
83-
- tar -C "target/$TARGET/release/" -czf "${TRAVIS_TAG}-${TARGET_DESC}.tar.gz" "scrs"
83+
- tar -C "target/$TARGET/release/" -czf "${TRAVIS_TAG}-${TARGET_DESC}.tar.gz" "screeps-rs-client"
8484
deploy:
8585
provider: releases
8686
api_key:

Cargo.lock

Lines changed: 34 additions & 34 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[workspace]
22
members = [
3-
"networking",
4-
"conrod-ui",
3+
"network",
4+
"ui",
55
]
66

77
[replace]

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ Screeps is a true programming MMO where users upload JavaScript code to power th
1111

1212
This client is built on three main projects:
1313
- [`rust-screeps-api`] implements HTTP calls, endpoints and json result parsing
14-
- [`scrs-network`] implements result caching, keeping track of http and websocket connections, and providing an 'event' api
15-
- [`screeps-rs`] implements rendering and a UI
14+
- [`screeps-rs-network`] implements result caching, keeping track of http and websocket connections, and providing an 'event' api
15+
- [`screeps-rs-ui`] implements rendering and a UI
1616

1717
[`rust-screeps-api`] can:
1818

@@ -47,8 +47,8 @@ Neighbor projects:
4747
[rust]: https://www.rust-lang.org/
4848
[conrod]: https://github.com/PistonDevelopers/conrod/
4949
[`rust-screeps-api`]: https://github.com/daboross/rust-screeps-api
50-
[`screeps-rs`]: https://github.com/daboross/screeps-rs
51-
[`scrs-networking`]: https://github.com/daboross/screeps-rs/tree/master/networking
50+
[`screeps-rs-network`]: https://github.com/daboross/screeps-rs/tree/master/network
51+
[`screeps-rs-ui`]: https://github.com/daboross/screeps-rs/tree/master/ui
5252
[`python-screeps`]: https://github.com/screepers/python-screeps/
5353
[`node-screeps-api`]: https://github.com/screepers/node-screeps-api
5454
[`screeps-silica`]: https://github.com/daboross/screeps-silica/

appveyor.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ install:
1919

2020
test_script:
2121
- if [%APPVEYOR_REPO_TAG%] == [false] (cargo build --verbose --target %TARGET%)
22-
- if [%APPVEYOR_REPO_TAG%] == [false] (cargo test --verbose -p scrs-network --target %TARGET%)
23-
- if [%APPVEYOR_REPO_TAG%] == [false] (cargo test --verbose -p screeps-rs --target %TARGET%)
22+
- if [%APPVEYOR_REPO_TAG%] == [false] (cargo test --verbose -p screeps-rs-network --target %TARGET%)
23+
- if [%APPVEYOR_REPO_TAG%] == [false] (cargo test --verbose -p screeps-rs-ui --target %TARGET%)
2424

2525
cache:
2626
- C:\Users\appveyor\.cargo\registry
@@ -29,7 +29,7 @@ cache:
2929
build: off
3030

3131
before_deploy:
32-
- cargo build --release -p screeps-rs --target %TARGET%
32+
- cargo build --release -p screeps-rs-ui --target %TARGET%
3333
- ps: script\predeploy.ps1
3434

3535
deploy:

conrod-ui/src/rust/network.rs

Lines changed: 0 additions & 31 deletions
This file was deleted.

networking/Cargo.toml renamed to network/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
[package]
2-
name = "scrs-network"
2+
name = "screeps-rs-network"
33
version = "0.1.0"
44
authors = ["David Ross <[email protected]>"]
5-
description = "WIP native Sreeps client backend, containing networking and caching, but no graphics."
5+
description = "Networking and caching for a work in progress native Screeps client."
66

77
repository = "https://github.com/daboross/screeps-rs"
88

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)