joecalsend/Cargo.toml

46 lines
1.6 KiB
TOML
Raw Normal View History

2025-07-04 00:00:11 +00:00
[package]
2025-08-06 21:09:37 +00:00
name = "jocalsend"
2025-08-15 01:15:34 +00:00
# 1.61803398874989484
2025-08-15 22:59:40 +00:00
#-----^
version = "1.6.18"
2025-07-04 00:00:11 +00:00
edition = "2024"
2025-08-10 20:35:54 +00:00
authors = ["Joe Ardent <code@ardent.nebcorp.com>"]
keywords = ["p2p", "localsend", "tui", "linux"]
description = "A terminal implementation of the LocalSend protocol"
readme = "README.md"
license-file = "LICENSE.md"
repository = "https://git.kittencollective.com/nebkor/joecalsend"
2025-07-04 00:00:11 +00:00
[dependencies]
axum = { version = "0.8", features = ["macros"] }
2025-08-08 20:07:37 +00:00
axum-server = { version = "0.7", features = ["tls-rustls", "tokio-rustls"] }
2025-07-04 00:00:11 +00:00
chrono = "0.4"
2025-08-08 23:22:51 +00:00
clap = { version = "4.5", features = ["derive"] }
crossterm = { version = "0.28", features = ["event-stream"] }
2025-07-28 23:30:55 +00:00
directories = "6"
2025-07-04 22:15:52 +00:00
figment = { version = "0.10", features = ["toml", "test", "env"] }
2025-07-28 23:30:55 +00:00
futures = "0.3"
2025-07-04 00:00:11 +00:00
julid-rs = { version = "1", default-features = false, features = ["serde"] }
2025-07-05 17:12:09 +00:00
local-ip-address = "0.6"
log = "0.4"
2025-07-04 00:00:11 +00:00
mime = "0.3"
mime_guess = "2"
2025-07-05 17:12:09 +00:00
network-interface = { version = "2", features = ["serde"] }
2025-07-28 23:30:55 +00:00
ratatui = "0.29"
2025-08-06 18:30:41 +00:00
ratatui-explorer = "0.2"
2025-08-08 20:07:37 +00:00
rcgen = "0.14"
2025-07-04 00:00:11 +00:00
reqwest = { version = "0.12", features = ["json"] }
2025-08-08 20:07:37 +00:00
rustix = { version = "1", default-features = false, features = ["system"] }
2025-07-04 00:00:11 +00:00
serde = { version = "1", features = ["derive"] }
serde_json = "1"
sha256 = "1.6"
simsearch = "0.2"
2025-07-04 00:00:11 +00:00
thiserror = "2"
2025-07-07 04:43:24 +00:00
tokio = { version = "1", default-features = false, features = ["time", "macros", "rt-multi-thread"] }
2025-08-08 20:07:37 +00:00
tokio-rustls = { version = "0.26", default-features = false, features = ["tls12", "logging"] }
toml = "0.9"
2025-07-04 00:00:11 +00:00
tower-http = { version = "0.6", features = ["limit"] }
2025-08-06 18:30:41 +00:00
tui-input = "0.14"
2025-07-29 04:49:57 +00:00
tui-logger = { version = "0.17", features = ["crossterm"] }
2025-08-06 18:30:41 +00:00
unicode-segmentation = "1"