Files
jello/Cargo.toml
uttarayan21 e50e08dc57
Some checks failed
build / checks-matrix (push) Has been cancelled
build / checks-build (push) Has been cancelled
build / codecov (push) Has been cancelled
docs / docs (push) Has been cancelled
feat: Added iced-ui and updated typegen for docs
2025-11-18 16:45:43 +05:30

32 lines
830 B
TOML

[workspace]
members = [".", "api", "typegen", "ui-gpui", "ui-iced"]
[package]
name = "jello"
version = "0.1.0"
edition = "2024"
license = "MIT"
[dependencies]
api = { version = "0.1.0", path = "api" }
blurhash = "0.2.3"
clap = { version = "4.5", features = ["derive"] }
clap_complete = "4.5"
dotenvy = "0.15.7"
error-stack = "0.6"
gpui = { version = "0.2.2", default-features = false, features = ["wayland"] }
image = "0.25.9"
tap = "1.0.1"
thiserror = "2.0"
tokio = { version = "1.43.1", features = ["macros", "rt-multi-thread"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
ui-gpui = { version = "0.1.0", path = "ui-gpui", optional = true }
ui-iced = { version = "0.1.0", path = "ui-iced", optional = true }
[features]
default = ["iced"]
iced = ["dep:ui-iced"]
gpui = ["dep:ui-gpui"]