20 lines
471 B
TOML
20 lines
471 B
TOML
[package]
|
|
name = "echoed"
|
|
publish = false
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[features]
|
|
dotenvy = ["dep:dotenvy"]
|
|
|
|
[dependencies]
|
|
color-eyre = "0.6.3"
|
|
cookie_store = "0.21.0"
|
|
crossterm = "0.28.1"
|
|
dotenvy = { version = "0.15.7", optional = true }
|
|
ratatui = "0.29.0"
|
|
regex = "1.11.1"
|
|
reqwest = { version = "0.12.9", features = ["cookies", "multipart"] }
|
|
reqwest_cookie_store = "0.8.0"
|
|
tokio = { version = "1.41.0", features = ["macros", "rt-multi-thread"] }
|
|
url = "2.5.2"
|