mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-05 20:15:01 +00:00
45818fb4c5
* Reduce Vec allocations * Optimize stuff * Move embedded migrations to separate crate * Revert "Move embedded migrations to separate crate" This reverts commit44b1049970
. * clippy, fmt * Shrink rate limit allowance to f32 * Initialize rate limit allowance directly * Add removal of old rate limit buckets * Improve readability * Remove usage of is_okay_and for Rust 1.67 compatibility * Add dhat-heap feature * Fix api_benchmark.sh and add run_and_benchmark.sh * Revert "Fix api_benchmark.sh and add run_and_benchmark.sh" This reverts commitb4528e5b85
. * Revert "Add dhat-heap feature" This reverts commit08e835d487
. * Manually revert remaining stuff * Use Ipv6Addr in RateLimitStorage * Shrink last_checked in RateLimitBucket to 32 bits * Fix rate_limit::get_ip * Stuff (#1) * Update rate_limiter.rs * Update mod.rs * Update scheduled_tasks.rs * Fix rate_limiter.rs * Dullbananas patch 1 (#2) * Update rate_limiter.rs * Update mod.rs * Update scheduled_tasks.rs * Fix rate_limiter.rs * Rate limit IPv6 addresses in groups * Fmt lib.rs * woodpicker trigger * Refactor and comment `check_rate_limit_full` * Add `test_split_ipv6` * Replace -2.0 with UNINITIALIZED_TOKEN_AMOUNT * Add `test_rate_limiter` --------- Co-authored-by: Dessalines <dessalines@users.noreply.github.com>
55 lines
1.5 KiB
TOML
55 lines
1.5 KiB
TOML
[package]
|
|
name = "lemmy_utils"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
description.workspace = true
|
|
license.workspace = true
|
|
homepage.workspace = true
|
|
documentation.workspace = true
|
|
repository.workspace = true
|
|
|
|
[lib]
|
|
name = "lemmy_utils"
|
|
path = "src/lib.rs"
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
regex = { workspace = true }
|
|
chrono = { workspace = true }
|
|
tracing = { workspace = true }
|
|
tracing-error = { workspace = true }
|
|
itertools = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
once_cell = { workspace = true }
|
|
url = { workspace = true }
|
|
actix-web = { workspace = true }
|
|
anyhow = { workspace = true }
|
|
reqwest-middleware = { workspace = true }
|
|
strum = { workspace = true }
|
|
strum_macros = { workspace = true }
|
|
futures = { workspace = true }
|
|
diesel = { workspace = true, features = ["chrono"] }
|
|
http = { workspace = true }
|
|
doku = { workspace = true, features = ["url-2"] }
|
|
uuid = { workspace = true, features = ["serde", "v4"] }
|
|
rosetta-i18n = { workspace = true }
|
|
typed-builder = { workspace = true }
|
|
percent-encoding = { workspace = true }
|
|
tokio = { workspace = true }
|
|
openssl = "0.10.42"
|
|
html2text = "0.6.0"
|
|
deser-hjson = "1.0.2"
|
|
smart-default = "0.7.1"
|
|
jsonwebtoken = "8.1.1"
|
|
lettre = "0.10.1"
|
|
markdown-it = "0.5.0"
|
|
totp-rs = { version = "5.0.2", features = ["gen_secret", "otpauth"] }
|
|
enum-map = "2.5"
|
|
|
|
[dev-dependencies]
|
|
reqwest = { workspace = true }
|
|
tokio = { workspace = true, features = ["macros"] }
|
|
|
|
[build-dependencies]
|
|
rosetta-build = "0.1.2"
|