Files
continuwuity/src/core/Cargo.toml
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

132 lines
2.8 KiB
TOML
Raw Normal View History

2024-05-09 15:59:08 -07:00
[package]
2024-12-14 21:58:01 -05:00
name = "conduwuit_core"
2024-06-01 10:19:26 +00:00
description.workspace = true
2024-05-09 15:59:08 -07:00
edition.workspace = true
2024-06-01 10:19:26 +00:00
license.workspace = true
readme.workspace = true
repository.workspace = true
version.workspace = true
2024-05-09 15:59:08 -07:00
[lib]
path = "mod.rs"
crate-type = [
"rlib",
# "dylib",
]
[features]
brotli_compression = [
"reqwest/brotli",
]
conduwuit_mods = [
"dep:libloading"
]
gzip_compression = [
"reqwest/gzip",
]
2026-02-11 18:21:19 +00:00
http3 = [
"reqwest/http3",
]
hardened_malloc = [
"dep:hardened_malloc-rs"
2024-05-09 15:59:08 -07:00
]
jemalloc = [
"dep:tikv-jemalloc-sys",
"dep:tikv-jemalloc-ctl",
"dep:tikv-jemallocator",
]
jemalloc_conf = []
2024-05-09 15:59:08 -07:00
jemalloc_prof = [
"tikv-jemalloc-sys/profiling",
]
2024-08-18 17:36:33 -04:00
jemalloc_stats = [
"tikv-jemalloc-sys/stats",
"tikv-jemalloc-ctl/stats",
"tikv-jemallocator/stats",
]
perf_measurements = []
release_max_log_level = [
"tracing/max_level_trace",
"tracing/release_max_level_info",
"log/max_level_trace",
"log/release_max_level_info",
2024-05-09 15:59:08 -07:00
]
sentry_telemetry = []
zstd_compression = [
"reqwest/zstd",
]
2024-05-09 15:59:08 -07:00
[dependencies]
2024-06-04 23:51:02 +00:00
argon2.workspace = true
2024-08-02 22:09:30 +00:00
arrayvec.workspace = true
2024-05-09 15:59:08 -07:00
axum.workspace = true
2025-03-31 05:03:15 +00:00
axum-extra.workspace = true
2024-05-09 15:59:08 -07:00
bytes.workspace = true
bytesize.workspace = true
2024-07-24 09:10:01 +00:00
cargo_toml.workspace = true
checked_ops.workspace = true
2024-07-03 01:08:54 +00:00
chrono.workspace = true
2024-08-03 02:18:59 +00:00
clap.workspace = true
2024-12-14 21:58:01 -05:00
conduwuit-macros.workspace = true
conduwuit-build-metadata.workspace = true
2024-07-13 21:02:43 +00:00
const-str.workspace = true
core_affinity.workspace = true
2024-07-24 23:01:00 +00:00
ctor.workspace = true
2024-08-27 01:23:44 +00:00
cyborgtime.workspace = true
2024-05-09 15:59:08 -07:00
either.workspace = true
figment.workspace = true
2024-08-08 17:18:30 +00:00
futures.workspace = true
2024-05-09 15:59:08 -07:00
http-body-util.workspace = true
http.workspace = true
ipaddress.workspace = true
itertools.workspace = true
2024-12-30 09:06:47 +00:00
libc.workspace = true
2024-05-09 15:59:08 -07:00
libloading.workspace = true
libloading.optional = true
2024-05-09 15:59:08 -07:00
log.workspace = true
lettre.workspace = true
num-traits.workspace = true
2024-05-09 15:59:08 -07:00
rand.workspace = true
2026-02-20 22:57:45 +00:00
rand_core = { version = "0.6.4", features = ["getrandom"] }
2024-05-09 15:59:08 -07:00
regex.workspace = true
reqwest.workspace = true
ring.workspace = true
ruma.workspace = true
sanitize-filename.workspace = true
serde_json.workspace = true
serde_regex.workspace = true
2025-11-09 11:23:32 +01:00
serde-saphyr.workspace = true
2024-05-09 15:59:08 -07:00
serde.workspace = true
smallvec.workspace = true
smallstr.workspace = true
2024-05-09 15:59:08 -07:00
thiserror.workspace = true
tikv-jemallocator.optional = true
tikv-jemallocator.workspace = true
tikv-jemalloc-ctl.optional = true
tikv-jemalloc-ctl.workspace = true
tikv-jemalloc-sys.optional = true
tikv-jemalloc-sys.workspace = true
tokio.workspace = true
2024-06-25 05:05:02 +00:00
tokio-metrics.workspace = true
2024-07-25 02:59:54 +00:00
toml.workspace = true
2024-06-11 01:26:31 +00:00
tracing-core.workspace = true
2024-05-09 15:59:08 -07:00
tracing-subscriber.workspace = true
tracing.workspace = true
url.workspace = true
parking_lot.workspace = true
2025-07-19 22:30:41 +01:00
lock_api.workspace = true
2026-03-23 15:01:22 +00:00
hyper-util.workspace = true
2024-05-09 15:59:08 -07:00
[target.'cfg(unix)'.dependencies]
nix.workspace = true
[target.'cfg(all(not(target_env = "msvc"), target_os = "linux"))'.dependencies]
hardened_malloc-rs.workspace = true
hardened_malloc-rs.optional = true
[dev-dependencies]
maplit.workspace = true
2024-05-09 15:59:08 -07:00
[lints]
workspace = true