deps: change alloc to mimalloc

This commit is contained in:
Jun Kurihara 2023-08-18 16:29:45 +09:00
commit 8ecc83fe78
No known key found for this signature in database
GPG key ID: D992B3E3DE1DED23
3 changed files with 8 additions and 15 deletions

View file

@ -21,11 +21,11 @@ rpxy-lib = { path = "../rpxy-lib/", default-features = false, features = [
"sticky-cookie", "sticky-cookie",
] } ] }
anyhow = "1.0.73" anyhow = "1.0.75"
rustc-hash = "1.1.0" rustc-hash = "1.1.0"
serde = { version = "1.0.183", default-features = false, features = ["derive"] } serde = { version = "1.0.183", default-features = false, features = ["derive"] }
derive_builder = "0.12.0" derive_builder = "0.12.0"
tokio = { version = "1.31.0", default-features = false, features = [ tokio = { version = "1.32.0", default-features = false, features = [
"net", "net",
"rt-multi-thread", "rt-multi-thread",
"time", "time",
@ -34,9 +34,10 @@ tokio = { version = "1.31.0", default-features = false, features = [
] } ] }
async-trait = "0.1.73" async-trait = "0.1.73"
rustls-pemfile = "1.0.3" rustls-pemfile = "1.0.3"
mimalloc = { version = "*", default-features = false }
# config # config
clap = { version = "4.3.21", features = ["std", "cargo", "wrap_help"] } clap = { version = "4.3.22", features = ["std", "cargo", "wrap_help"] }
toml = { version = "0.7.6", default-features = false, features = ["parse"] } toml = { version = "0.7.6", default-features = false, features = ["parse"] }
hot_reload = "0.1.4" hot_reload = "0.1.4"
@ -45,8 +46,4 @@ tracing = { version = "0.1.37" }
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] } tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
[target.'cfg(not(target_env = "msvc"))'.dependencies]
tikv-jemallocator = "0.5.4"
[dev-dependencies] [dev-dependencies]

View file

@ -1,9 +1,5 @@
#[cfg(not(target_env = "msvc"))]
use tikv_jemallocator::Jemalloc;
#[cfg(not(target_env = "msvc"))]
#[global_allocator] #[global_allocator]
static GLOBAL: Jemalloc = Jemalloc; static ALLOC: mimalloc::MiMalloc = mimalloc::MiMalloc;
mod cert_file_reader; mod cert_file_reader;
mod config; mod config;

View file

@ -23,7 +23,7 @@ rustc-hash = "1.1.0"
bytes = "1.4.0" bytes = "1.4.0"
derive_builder = "0.12.0" derive_builder = "0.12.0"
futures = { version = "0.3.28", features = ["alloc", "async-await"] } futures = { version = "0.3.28", features = ["alloc", "async-await"] }
tokio = { version = "1.31.0", default-features = false, features = [ tokio = { version = "1.32.0", default-features = false, features = [
"net", "net",
"rt-multi-thread", "rt-multi-thread",
"time", "time",
@ -35,8 +35,8 @@ async-trait = "0.1.73"
hot_reload = "0.1.4" # reloading certs hot_reload = "0.1.4" # reloading certs
# Error handling # Error handling
anyhow = "1.0.73" anyhow = "1.0.75"
thiserror = "1.0.45" thiserror = "1.0.47"
# http and tls # http and tls
hyper = { version = "0.14.27", default-features = false, features = [ hyper = { version = "0.14.27", default-features = false, features = [