diff options
| -rw-r--r-- | Cargo.toml | 3 | ||||
| -rw-r--r-- | src/lib.rs | 3 |
2 files changed, 6 insertions, 0 deletions
@@ -46,6 +46,9 @@ lazy_static = "1.4.0" # Web reqwest = { version = "0.11.9", features = ["json"] } +# Allocator +wee_alloc = "0.4.5" + [build-dependencies] # Build variables vergen = "7.0.0" @@ -27,6 +27,9 @@ #![deny(clippy::all, clippy::pedantic)] // clippy::nursery #![recursion_limit = "128"] +#[global_allocator] +static ALLOC: wee_alloc::WeeAlloc<'_> = wee_alloc::WeeAlloc::INIT; + mod constants; mod routes; mod structures; |