2021-07-02 23:22:37 -07:00
|
|
|
[package]
|
|
|
|
name = "iamb"
|
2023-03-22 21:28:34 -07:00
|
|
|
version = "0.0.7"
|
2022-12-29 18:00:59 -08:00
|
|
|
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"
|
2022-12-29 18:00:59 -08:00
|
|
|
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"]
|
2022-12-29 18:00:59 -08:00
|
|
|
keywords = ["matrix", "chat", "tui", "vim"]
|
2023-01-23 17:08:11 -08:00
|
|
|
categories = ["command-line-utilities"]
|
2023-01-03 13:57:28 -08:00
|
|
|
rust-version = "1.66"
|
2021-07-02 23:22:37 -07:00
|
|
|
|
|
|
|
[dependencies]
|
2023-01-28 12:29:06 +00:00
|
|
|
bitflags = "1.3.2"
|
2022-12-29 18:00:59 -08:00
|
|
|
chrono = "0.4"
|
|
|
|
clap = {version = "4.0", features = ["derive"]}
|
2023-04-06 16:10:48 -07:00
|
|
|
comrak = "0.18.0"
|
2023-01-23 17:08:11 -08:00
|
|
|
css-color-parser = "0.1.2"
|
2022-12-29 18:00:59 -08:00
|
|
|
dirs = "4.0.0"
|
2023-02-09 17:53:33 -08:00
|
|
|
emojis = "~0.5.2"
|
2022-12-29 18:00:59 -08:00
|
|
|
gethostname = "0.4.1"
|
2023-01-23 17:08:11 -08:00
|
|
|
html5ever = "0.26.0"
|
|
|
|
markup5ever_rcdom = "0.2.0"
|
2023-01-10 19:59:30 -08:00
|
|
|
mime = "^0.3.16"
|
|
|
|
mime_guess = "^2.0.4"
|
2023-01-28 12:29:06 +00:00
|
|
|
open = "3.2.0"
|
2022-12-29 18:00:59 -08:00
|
|
|
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"]}
|
|
|
|
|
2023-01-23 17:08:11 -08:00
|
|
|
[dependencies.modalkit]
|
2023-04-28 16:52:33 -07:00
|
|
|
version = "0.0.15"
|
2023-01-23 17:08:11 -08:00
|
|
|
|
|
|
|
[dependencies.matrix-sdk]
|
|
|
|
version = "0.6"
|
|
|
|
default-features = false
|
2023-04-06 16:10:48 -07:00
|
|
|
features = ["e2e-encryption", "sled", "rustls-tls"]
|
2023-01-23 17:08:11 -08:00
|
|
|
|
|
|
|
[dependencies.tokio]
|
|
|
|
version = "1.24.1"
|
|
|
|
features = ["macros", "net", "rt-multi-thread", "sync", "time"]
|
|
|
|
|
2022-12-29 18:00:59 -08:00
|
|
|
[dev-dependencies]
|
|
|
|
lazy_static = "1.4.0"
|
2023-03-10 22:36:00 +02:00
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
lto = true
|
|
|
|
incremental = false
|