1
0
Fork 0
mirror of https://github.com/Nutomic/ibis.git synced 2024-11-22 18:41:09 +00:00
ibis/Cargo.toml

136 lines
3.5 KiB
TOML
Raw Normal View History

2023-11-14 22:41:58 +00:00
[package]
2024-01-03 12:29:25 +00:00
name = "ibis"
2024-10-23 09:37:06 +00:00
version = "0.1.4"
2023-11-14 22:41:58 +00:00
edition = "2021"
2024-01-03 12:29:25 +00:00
[features]
2024-01-03 16:06:52 +00:00
default = ["ssr"]
2024-01-03 12:29:25 +00:00
ssr = [
"axum",
"axum-macros",
2024-01-16 15:07:01 +00:00
"axum-extra",
2024-01-03 16:06:52 +00:00
"tower-http",
2024-01-03 12:29:25 +00:00
"diesel",
"diesel-derive-newtype",
"diesel_migrations",
2024-01-03 16:06:52 +00:00
"tokio",
"leptos_axum",
"activitypub_federation",
"jsonwebtoken",
2024-10-28 10:25:33 +00:00
"leptos/ssr",
2024-10-28 14:28:58 +00:00
"leptos-use/ssr",
2024-11-11 10:20:28 +00:00
"leptos-use/axum",
2024-11-15 09:16:48 +00:00
"doku",
"bcrypt",
"diffy",
"enum_delegate",
"async-trait",
"config",
"tower",
"tower-layer",
2024-11-20 09:21:26 +00:00
"reqwest","diesel-derive-newtype"
2023-12-22 14:07:20 +00:00
]
2024-11-20 14:34:45 +00:00
hydrate = ["leptos/hydrate", "gloo-net"]
# This profile significantly speeds up build time. If debug info is needed you can comment the line
# out temporarily, but make sure to leave this in the main branch.
[profile.dev]
debug = 0
[profile.release]
lto = "thin"
strip = true
# Defines a size-optimized profile for the WASM bundle in release mode
[profile.wasm-release]
inherits = "release"
opt-level = 'z'
lto = true
codegen-units = 1
panic = "abort"
2024-01-03 12:29:25 +00:00
2024-02-07 15:54:43 +00:00
[lints.clippy]
dbg_macro = "deny"
2024-02-27 17:04:39 +00:00
unwrap_used = "deny"
2024-02-07 15:54:43 +00:00
2024-01-03 12:29:25 +00:00
[dependencies]
2024-11-15 15:35:03 +00:00
anyhow = "1.0.93"
2024-11-15 11:20:55 +00:00
leptos = "0.7.0-rc1"
leptos_meta = "0.7.0-rc1"
leptos_router = "0.7.0-rc1"
chrono = { version = "0.4.38", features = ["serde"] }
env_logger = { version = "0.11.5", default-features = false }
2024-11-15 15:35:03 +00:00
futures = "0.3.31"
2024-01-03 12:29:25 +00:00
hex = "0.4.3"
rand = "0.8.5"
2024-11-15 15:07:29 +00:00
getrandom = { version = "0.2", features = ["js"] }
2024-11-15 15:35:03 +00:00
serde_json = "1.0.132"
2024-01-03 12:29:25 +00:00
sha2 = "0.10.8"
2024-11-15 15:35:03 +00:00
uuid = { version = "1.11.0", features = ["serde"] }
serde = { version = "1.0.215", features = ["derive"] }
url = { version = "2.5.3", features = ["serde"] }
2024-11-20 09:21:26 +00:00
reqwest = { version = "0.12.9", features = [
"json",
"cookies",
], optional = true }
2024-01-03 16:06:52 +00:00
log = "0.4"
tracing = "0.1.40"
2024-11-15 15:35:03 +00:00
once_cell = "1.20.2"
2024-01-09 11:41:44 +00:00
console_error_panic_hook = "0.1.7"
time = "0.3.36"
2024-02-07 15:54:43 +00:00
smart-default = "0.7.1"
2024-11-15 15:35:03 +00:00
leptos-use = "0.14.0-rc3"
2024-11-07 14:38:10 +00:00
codee = "0.2.0"
2024-11-15 15:35:03 +00:00
wasm-bindgen = "=0.2.95"
2024-01-03 12:29:25 +00:00
2024-11-15 09:16:48 +00:00
# backend-only features
axum = { version = "0.7.7", optional = true }
axum-macros = { version = "0.4.2", optional = true }
axum-extra = { version = "0.9.4", features = ["cookie"], optional = true }
2024-11-15 15:35:03 +00:00
tokio = { version = "1.41.1", features = ["full"], optional = true }
2024-11-15 09:16:48 +00:00
tower-http = { version = "0.6.1", features = ["cors", "fs"], optional = true }
activitypub_federation = { version = "0.6.0", features = [
"axum",
"diesel",
], default-features = false, optional = true }
diesel = { version = "2.2.4", default-features = false, features = [
"postgres",
"chrono",
"uuid",
"r2d2",
], optional = true }
diesel-derive-newtype = { version = "2.1.2", optional = true }
diesel_migrations = { version = "2.2.0", optional = true }
doku = { version = "0.21.1", optional = true }
jsonwebtoken = { version = "9.3.0", optional = true }
2024-11-15 11:20:55 +00:00
leptos_axum = { version = "0.7.0-rc1", optional = true }
2024-11-15 09:16:48 +00:00
bcrypt = { version = "0.15.1", optional = true }
diffy = { version = "0.4.0", optional = true }
enum_delegate = { version = "0.2.0", optional = true }
async-trait = { version = "0.1.83", optional = true }
2024-11-15 15:35:03 +00:00
config = { version = "0.14.1", features = ["toml"], optional = true }
2024-11-15 09:16:48 +00:00
tower = { version = "0.5.1", optional = true }
tower-layer = { version = "0.3.3", optional = true }
2024-11-15 10:43:27 +00:00
console_log = "1.0.0"
2024-11-15 15:07:29 +00:00
send_wrapper = "0.6.0"
2024-11-20 09:21:26 +00:00
gloo-net = { version = "0.6.0", optional = true }
2024-11-19 22:54:31 +00:00
web-sys = "0.3.72"
2024-11-20 09:21:26 +00:00
http = "1.1.0"
serde_urlencoded = "0.7.1"
2024-11-15 09:16:48 +00:00
2024-01-03 12:29:25 +00:00
[dev-dependencies]
pretty_assertions = "1.4.1"
2024-11-11 12:14:00 +00:00
retry_future = "0.4.0"
2024-01-03 12:29:25 +00:00
[package.metadata.leptos]
output-name = "ibis"
assets-dir = "assets"
2024-01-03 12:29:25 +00:00
bin-features = ["ssr"]
lib-features = ["hydrate"]
lib-profile-release = "wasm-release"
2024-10-30 15:28:41 +00:00
tailwind-input-file = "assets/ibis.css"
2024-10-30 11:09:08 +00:00
tailwind-config-file = "tailwind.config.js"
2024-01-03 12:29:25 +00:00
[lib]
crate-type = ["cdylib", "rlib"]