8000 make each project a workspace by joseluis · Pull Request #3 · PacktPublishing/Asynchronous-Programming-in-Rust · GitHub
[go: up one dir, main page]

Skip to content

make each project a workspace #3

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions ch01/a-assembly-dereference/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
[workspace]
[package]
name = "ac-assembly-dereference"
version = "0.1.0"
Expand Down
1 change: 1 addition & 0 deletions ch02/a-os-threads/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
[workspace]
[package]
name = "a-os-threads"
version = "0.1.0"
Expand Down
1 change: 1 addition & 0 deletions ch03/a-raw-syscall/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
[workspace]
[package]
name = "a-raw-syscall"
version = "0.1.0"
Expand Down
1 change: 1 addition & 0 deletions ch03/b-normal-syscall/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
[workspace]
[package]
name = "b-normal-syscall"
version = "0.1.0"
Expand Down
1 change: 1 addition & 0 deletions ch04/a-epoll/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
[workspace]
[package]
name = "a-epoll"
version = "0.1.0"
Expand Down
1 change: 1 addition & 0 deletions ch04/b-epoll-mio/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
[workspace]
[package]
name = "b-epoll-mio"
version = "0.1.0"
Expand Down
1 change: 1 addition & 0 deletions ch05/a-stack-swap/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
[workspace]
[package]
name = "a-stack-swap"
version = "0.1.0"
Expand Down
1 change: 1 addition & 0 deletions ch05/b-show-stack/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
[workspace]
[package]
name = "b-show-stack"
version = "0.1.0"
Expand Down
1 change: 1 addition & 0 deletions ch05/c-fibers/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
[workspace]
[package]
name = "c-fibers"
version = "0.1.0"
Expand Down
1 change: 1 addition & 0 deletions ch05/d-fibers-closure/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
[workspace]
[package]
name = "d-fibers-closure"
version = "0.1.0"
Expand Down
1 change: 1 addition & 0 deletions ch05/e-fibers-windows/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
[workspace]
[package]
name = "e-fibers-windows"
version = "0.1.0"
Expand Down
1 change: 1 addition & 0 deletions ch07/a-coroutine-bonus/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
[workspace]
[package]
name = "a-coroutine-bonus"
version = "0.1.0"
Expand Down
1 change: 1 addition & 0 deletions ch07/a-coroutine/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
[workspace]
[package]
name = "a-coroutine&quo 10000 t;
version = "0.1.0"
Expand Down
1 change: 1 addition & 0 deletions ch07/b-async-await/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
[workspace]
[package]
name = "b-async-await"
version = "0.1.0"
Expand Down
1 change: 1 addition & 0 deletions ch07/c-async-await/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
[workspace]
[package]
name = "c-async-await"
version = "0.1.0"
Expand Down
1 change: 1 addition & 0 deletions ch07/corofy/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
[workspace]
[package]
name = "corofy"
version = "0.1.0"
Expand Down
1 change: 1 addition & 0 deletions ch08/a-runtime/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
[workspace]
[package]
name = "a-runtime"
version = "0.1.0"
Expand Down
1 change: 1 addition & 0 deletions ch08/b-reactor-executor/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
[workspace]
[package]
name = "b-reactor-executor"
version = "0.1.0"
Expand Down
1 change: 1 addition & 0 deletions ch08/c-reactor-executor/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
[workspace]
[package]
name = "c-reactor-executor"
version = "0.1.0"
Expand Down
1 change: 1 addition & 0 deletions ch08/d-multiple-threads/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
[workspace]
[package]
name = "d-multiple-threads"
version = "0.1.0"
Expand Down
1 change: 1 addition & 0 deletions ch09/a-coroutines-variables/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
[workspace]
[package]
name = "a-coroutines-variables"
version = "0.1.0"
Expand Down
1 change: 1 addition & 0 deletions ch09/b-coroutines-references/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
[workspace]
[package]
name = "b-coroutines-references"
version = "0.1.0"
Expand Down
1 change: 1 addition & 0 deletions ch09/c-coroutines-problem/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
[workspace]
[package]
name = "c-coroutines-problem"
version = "0.1.0"
Expand Down
1 change: 1 addition & 0 deletions ch09/d-pin/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
[workspace]
[package]
name = "d-pin"
version = "0.1.0"
Expand Down
1 change: 1 addition & 0 deletions ch09/e-coroutines-pin/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
[workspace]
[package]
name = "e-coroutines-pin"
version = "0.1.0"
Expand Down
1 change: 1 addition & 0 deletions ch10/a-rust-futures-bonus/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
[workspace]
[package]
name = "b-rust-futures-bonus"
version = "0.1.0"
Expand Down
1 change: 1 addition & 0 deletions ch10/a-rust-futures/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
[workspace]
[package]
name = "a-rust-futures"
version = "0.1.0"
Expand Down
1 change: 1 addition & 0 deletions ch10/b-rust-futures-experiments/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
[workspace]
[package]
name = "b-rust-futures-experiments"
version = "0.1.0"
Expand Down
1 change: 1 addition & 0 deletions ch10/parker-bonus/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
[workspace]
[package]
name = "parker-bonus"
version = "0.1.0"
Expand Down
1 change: 1 addition & 0 deletions delayserver/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
[workspace]
[package]
name = "delayserver"
version = "0.1.0"
Expand Down
0