iamb/Cargo.toml

88 lines
2 KiB
TOML
Raw Normal View History

2021-07-02 23:22:37 -07:00
[package]
name = "iamb"
version = "0.0.9-alpha.1"
edition = "2018"
2021-07-02 23:22:37 -07:00
authors = ["Ulyssa <git@ulyssa.dev>"]
repository = "https://github.com/ulyssa/iamb"
2023-01-05 18:37:58 -08:00
homepage = "https://iamb.chat"
2021-07-02 23:22:37 -07:00
readme = "README.md"
description = "A Matrix chat client that uses Vim keybindings"
2021-07-02 23:22:37 -07:00
license = "Apache-2.0"
exclude = [".github", "CONTRIBUTING.md"]
keywords = ["matrix", "chat", "tui", "vim"]
categories = ["command-line-utilities"]
2023-10-05 18:37:31 -07:00
rust-version = "1.67"
build = "build.rs"
2023-06-14 21:14:23 -07:00
[build-dependencies]
mandown = "0.1.3"
[build-dependencies.vergen]
version = "8"
default-features = false
features = ["build", "git", "gitcl",]
2021-07-02 23:22:37 -07:00
[dependencies]
2024-02-27 21:21:05 -08:00
arboard = "3.3.0"
bitflags = "^2.3"
chrono = "0.4"
2023-10-05 18:37:31 -07:00
clap = {version = "~4.3", features = ["derive"]}
comrak = {version = "0.18.0", features = ["shortcodes"]}
css-color-parser = "0.1.2"
dirs = "4.0.0"
emojis = "~0.5.2"
2023-07-05 15:25:42 -07:00
futures = "0.3"
gethostname = "0.4.1"
html5ever = "0.26.0"
image = "0.24.5"
libc = "0.2"
markup5ever_rcdom = "0.2.0"
mime = "^0.3.16"
mime_guess = "^2.0.4"
open = "3.2.0"
2024-02-27 21:21:05 -08:00
ratatui = "0.23"
ratatui-image = { version = "0.4.3", features = ["serde"] }
regex = "^1.5"
rpassword = "^7.2"
serde = "^1.0"
serde_json = "^1.0"
thiserror = "^1.0.37"
tracing = "~0.1.36"
tracing-appender = "~0.2.2"
tracing-subscriber = "0.3.16"
unicode-segmentation = "^1.7"
unicode-width = "0.1.10"
url = {version = "^2.2.2", features = ["serde"]}
edit = "0.1.4"
[dependencies.modalkit]
2024-02-27 21:21:05 -08:00
version = "0.0.17"
git = "https://github.com/ulyssa/modalkit"
2024-02-27 21:21:05 -08:00
rev = "5ebcaf1"
[dependencies.modalkit-ratatui]
version = "0.0.17"
git = "https://github.com/ulyssa/modalkit"
rev = "5ebcaf1"
[dependencies.matrix-sdk]
2023-09-12 17:17:29 -07:00
version = "^0.6.2"
default-features = false
features = ["e2e-encryption", "sled", "rustls-tls", "sso-login"]
[dependencies.tokio]
version = "1.24.1"
features = ["macros", "net", "rt-multi-thread", "sync", "time"]
[dev-dependencies]
lazy_static = "1.4.0"
pretty_assertions = "1.4.0"
2023-03-10 22:36:00 +02:00
[profile.release]
lto = true
incremental = false
[features]
default = ["sixel"]
sixel = ["ratatui-image/sixel"]