|
@@ -1,6 +1,6 @@
|
|
|
[package]
|
|
|
name = "ntex-bench"
|
|
|
-version = "2.0.0"
|
|
|
+version = "2.1.0"
|
|
|
edition = "2018"
|
|
|
|
|
|
[[bin]]
|
|
@@ -12,7 +12,7 @@ name = "ntex-compio"
|
|
|
path = "src/main.rs"
|
|
|
|
|
|
[[bin]]
|
|
|
-name = "ntex-default"
|
|
|
+name = "ntex-neon"
|
|
|
path = "src/main.rs"
|
|
|
|
|
|
[[bin]]
|
|
@@ -24,7 +24,7 @@ name = "ntex-db-compio"
|
|
|
path = "src/main_db.rs"
|
|
|
|
|
|
[[bin]]
|
|
|
-name = "ntex-db-default"
|
|
|
+name = "ntex-db-neon"
|
|
|
path = "src/main_db.rs"
|
|
|
|
|
|
[[bin]]
|
|
@@ -36,7 +36,7 @@ name = "ntex-plt-compio"
|
|
|
path = "src/main_plt.rs"
|
|
|
|
|
|
[[bin]]
|
|
|
-name = "ntex-plt-default"
|
|
|
+name = "ntex-plt-neon"
|
|
|
path = "src/main_plt.rs"
|
|
|
|
|
|
[features]
|
|
@@ -48,8 +48,8 @@ tokio = ["ntex/tokio"]
|
|
|
# compio runtime
|
|
|
compio = ["ntex/compio"]
|
|
|
|
|
|
-# default-rt runtime
|
|
|
-default-rt = ["ntex/default-rt"]
|
|
|
+# neon runtime
|
|
|
+neon = ["ntex/neon"]
|
|
|
|
|
|
[dependencies]
|
|
|
ntex = "2.12"
|
|
@@ -76,10 +76,9 @@ compio-driver = { version = "*", features = ["io-uring"]}
|
|
|
[patch.crates-io]
|
|
|
ntex = { git = "https://github.com/ntex-rs/ntex.git" }
|
|
|
ntex-io = { git = "https://github.com/ntex-rs/ntex.git" }
|
|
|
-ntex-iodriver = { git = "https://github.com/ntex-rs/ntex.git" }
|
|
|
ntex-net = { git = "https://github.com/ntex-rs/ntex.git" }
|
|
|
ntex-rt = { git = "https://github.com/ntex-rs/ntex.git" }
|
|
|
-ntex-runtime = { git = "https://github.com/ntex-rs/ntex.git" }
|
|
|
+ntex-neon = { git = "https://github.com/ntex-rs/ntex.git" }
|
|
|
|
|
|
[profile.release]
|
|
|
opt-level = 3
|