Skip to content

Commit 432259b

Browse files
authored
De-workspace-ification (#135)
Now that we've refactored the protocol bindings from crates to feature-guarded modules (PR #131), we can remove the workspaces for those crates. Signed-off-by: Jim Crossley <[email protected]>
1 parent 1223042 commit 432259b

File tree

36 files changed

+4
-2622
lines changed

36 files changed

+4
-2622
lines changed

.github/workflows/rust_tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,14 +60,14 @@ jobs:
6060
with:
6161
command: build
6262
toolchain: ${{ matrix.toolchain }}
63-
args: --target ${{ matrix.target }} --workspace --all-features
63+
args: --target ${{ matrix.target }} --all-features
6464
- uses: actions-rs/cargo@v1
6565
name: "Test"
6666
if: matrix.target == 'x86_64-unknown-linux-gnu'
6767
with:
6868
command: test
6969
toolchain: ${{ matrix.toolchain }}
70-
args: --target ${{ matrix.target }} --workspace --all-features
70+
args: --target ${{ matrix.target }} --all-features
7171

7272
# If musl, compile and test all
7373
- uses: actions-rs/cargo@v1
@@ -76,7 +76,7 @@ jobs:
7676
with:
7777
command: build
7878
toolchain: ${{ matrix.toolchain }}
79-
args: --target ${{ matrix.target }} --workspace --all-features
79+
args: --target ${{ matrix.target }} --all-features
8080
env:
8181
CC: musl-gcc
8282
CXX: g++
@@ -86,7 +86,7 @@ jobs:
8686
with:
8787
command: test
8888
toolchain: ${{ matrix.toolchain }}
89-
args: --target ${{ matrix.target }} --workspace --all-features
89+
args: --target ${{ matrix.target }} --all-features
9090
env:
9191
CC: musl-gcc
9292
CXX: g++

Cargo.toml

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -66,18 +66,3 @@ chrono = { version = "^0.4", features = ["serde"] }
6666
mockito = "0.25.1"
6767
tokio = { version = "^1.0", features = ["full"] }
6868
mime = "0.3"
69-
70-
[workspace]
71-
members = [
72-
".",
73-
"cloudevents-sdk-actix-web",
74-
"cloudevents-sdk-reqwest",
75-
"cloudevents-sdk-rdkafka",
76-
"cloudevents-sdk-warp",
77-
]
78-
exclude = [
79-
"example-projects/actix-web-example",
80-
"example-projects/reqwest-wasm-example",
81-
"example-projects/rdkafka-example",
82-
"example-projects/warp-example",
83-
]

cloudevents-sdk-actix-web/Cargo.toml

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

cloudevents-sdk-actix-web/README.md

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

cloudevents-sdk-actix-web/src/headers.rs

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

cloudevents-sdk-actix-web/src/lib.rs

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

0 commit comments

Comments
 (0)