File tree Expand file tree Collapse file tree 3 files changed +6
-7
lines changed Expand file tree Collapse file tree 3 files changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ mod shuttle_main;
23
23
/// | ----------------- | -------------------------------------------------------------- | -------------------------------------------------------------------------------- | ---------- | --------------------------------------------------------------------------------------- |
24
24
/// | `ShuttleActixWeb` | [shuttle-actix-web](https://crates.io/crates/shuttle-actix-web)| [actix-web](https://docs.rs/actix-web/4.3) | 4.3 | [GitHub](https://github.com/shuttle-hq/shuttle-examples/tree/main/actix-web/hello-world)|
25
25
/// | `ShuttleAxum` | [shuttle-axum](https://crates.io/crates/shuttle-axum) | [axum](https://docs.rs/axum/0.7) | 0.7 | [GitHub](https://github.com/shuttle-hq/shuttle-examples/tree/main/axum/hello-world) |
26
+ /// | `ShuttleNtex` | [shuttle-ntex](https://crates.io/crates/shuttle-ntex) | [ntex](https://docs.rs/ntex/1.2) | 1.2 | [GitHub](https://github.com/shuttle-hq/shuttle-examples/tree/main/ntex/hello-world) |
26
27
/// | `ShuttlePoem` | [shuttle-poem](https://crates.io/crates/shuttle-poem) | [poem](https://docs.rs/poem/2.0) | 2.0 | [GitHub](https://github.com/shuttle-hq/shuttle-examples/tree/main/poem/hello-world) |
27
28
/// | `ShuttleRocket` | [shuttle-rocket](https://crates.io/crates/shuttle-rocket) | [rocket](https://docs.rs/rocket/0.5) | 0.5 | [GitHub](https://github.com/shuttle-hq/shuttle-examples/tree/main/rocket/hello-world) |
28
29
/// | `ShuttleSalvo` | [shuttle-salvo](https://crates.io/crates/shuttle-salvo) | [salvo](https://docs.rs/salvo/0.63) | 0.63 | [GitHub](https://github.com/shuttle-hq/shuttle-examples/tree/main/salvo/hello-world) |
Original file line number Diff line number Diff line change @@ -12,8 +12,9 @@ shuttle-qdrant = { path = "BASE/resources/qdrant" }
12
12
shuttle-shared-db = { path = " BASE/resources/shared-db" }
13
13
shuttle-turso = { path = " BASE/resources/turso" }
14
14
15
- shuttle-axum = { path = " BASE/services/shuttle-axum" }
16
15
shuttle-actix-web = { path = " BASE/services/shuttle-actix-web" }
16
+ shuttle-axum = { path = " BASE/services/shuttle-axum" }
17
+ shuttle-ntex = { path = " BASE/services/shuttle-ntex" }
17
18
shuttle-poem = { path = " BASE/services/shuttle-poem" }
18
19
shuttle-rocket = { path = " BASE/services/shuttle-rocket" }
19
20
shuttle-salvo = { path = " BASE/services/shuttle-salvo" }
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " shuttle-ntex"
3
- version = " 0.1 .0"
3
+ version = " 0.43 .0"
4
4
edition = " 2021"
5
5
license = " Apache-2.0"
6
6
description = " Service implementation to run a Ntex webserver on shuttle"
@@ -9,9 +9,6 @@ keywords = ["shuttle-service", "ntex"]
9
9
[workspace ]
10
10
11
11
[dependencies ]
12
- ntex = { version = " 1.2.1" }
13
- shuttle-runtime = { path = " ../../runtime" , version = " 0.43.0" , default-features = false }
12
+ ntex = { version = " 1.2.1" , features = [" tokio" ] }
14
13
num_cpus = " 1.16.0"
15
-
16
- [dev-dependencies ]
17
- tokio = { version = " 1.26.0" , features = [" macros" , " rt-multi-thread" ] }
14
+ shuttle-runtime = { path = " ../../runtime" , version = " 0.43.0" , default-features = false }
You can’t perform that action at this time.
0 commit comments