Skip to content

Commit

Permalink
misc: remove unneeded codegen feature (#584)
Browse files Browse the repository at this point in the history
  • Loading branch information
chesedo authored Jan 18, 2023
1 parent 8414714 commit 05f7469
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion deployer/tests/resources/bind-panic/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ crate-type = ["cdylib"]
[workspace]

[dependencies]
shuttle-service = { path = "../../../../service", features = ["codegen"] }
shuttle-service = { path = "../../../../service" }
2 changes: 1 addition & 1 deletion deployer/tests/resources/main-panic/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ crate-type = ["cdylib"]
[workspace]

[dependencies]
shuttle-service = { path = "../../../../service", features = ["codegen"] }
shuttle-service = { path = "../../../../service" }
2 changes: 1 addition & 1 deletion deployer/tests/resources/sleep-async/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ crate-type = ["cdylib"]

[dependencies]
tokio = { version = "1.0", features = ["time"]}
shuttle-service = { path = "../../../../service", features = ["codegen"] }
shuttle-service = { path = "../../../../service" }
2 changes: 1 addition & 1 deletion service/tests/resources/bind-panic/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ crate-type = ["cdylib"]
[workspace]

[dependencies]
shuttle-service = { path = "../../../", features = ["codegen"] }
shuttle-service = { path = "../../../" }
2 changes: 1 addition & 1 deletion service/tests/resources/build-panic/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ crate-type = ["cdylib"]
[workspace]

[dependencies]
shuttle-service = { path = "../../../", features = ["codegen"] }
shuttle-service = { path = "../../../" }
2 changes: 1 addition & 1 deletion service/tests/resources/is-cdylib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ crate-type = ["cdylib", "staticlib"]

[dependencies]
rocket = "0.5.0-rc.2"
shuttle-service = { path = "../../../", features = ["codegen", "web-rocket"] }
shuttle-service = { path = "../../../", features = ["web-rocket"] }
2 changes: 1 addition & 1 deletion service/tests/resources/not-cdylib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ crate-type = ["staticlib"]

[dependencies]
rocket = "0.5.0-rc.2"
shuttle-service = { path = "../../../", features = ["codegen", "web-rocket"] }
shuttle-service = { path = "../../../", features = ["web-rocket"] }
2 changes: 1 addition & 1 deletion service/tests/resources/sleep/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ crate-type = ["cdylib"]
[workspace]

[dependencies]
shuttle-service = { path = "../../../", features = ["codegen"] }
shuttle-service = { path = "../../../" }
2 changes: 1 addition & 1 deletion service/tests/resources/sqlx-pool/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ crate-type = ["cdylib"]
[workspace]

[dependencies]
shuttle-service = { path = "../../../", features = ["codegen"] }
shuttle-service = { path = "../../../" }
shuttle-shared-db = { path = "../../../../resources/shared-db", features = ["postgres"] }
sqlx = { version = "0.6.2", features = [ "runtime-tokio-native-tls" ] }

0 comments on commit 05f7469

Please sign in to comment.