mirror of
https://github.com/logos-messaging/libchat.git
synced 2026-05-12 04:59:27 +00:00
* chore: remove ffi from double ratchet * chore: format * feat: chat cli demo app via file transport * chore: fix the compile issues * chore: fix long intro copy to clipboard * chore: move chat cli to bin folder * chore: use tmp data folder * chore: update doc * chore: use encrypted db with default db pass * chore: fmt and clippy * chore: fix clippy and refactor * chore: utils for helper funcs * chore: rename sessions to chats
19 lines
322 B
TOML
19 lines
322 B
TOML
[package]
|
|
name = "chat-cli"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[[bin]]
|
|
name = "chat-cli"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
libchat = { path = "../../core/conversations" }
|
|
ratatui = "0.29"
|
|
crossterm = "0.29"
|
|
anyhow = "1.0"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
hex = "0.4"
|
|
arboard = "3"
|