2024-07-09 14:56:08 +00:00
|
|
|
[package]
|
|
|
|
name = "mostr"
|
2024-07-26 09:33:03 +00:00
|
|
|
description = "A nested task chat, powered by nostr."
|
|
|
|
repository = "https://forge.ftt.gmbh/janek/mostr"
|
|
|
|
readme = "README.md"
|
|
|
|
license = "GPL 3.0"
|
|
|
|
authors = ["melonion"]
|
2024-07-31 13:34:23 +00:00
|
|
|
version = "0.3.0"
|
2024-07-09 14:56:08 +00:00
|
|
|
edition = "2021"
|
2024-07-26 09:33:03 +00:00
|
|
|
default-run = "mostr"
|
2024-07-09 14:56:08 +00:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2024-07-29 18:06:23 +00:00
|
|
|
xdg = "2.5.2"
|
|
|
|
itertools = "0.12.1"
|
|
|
|
log = "0.4.21"
|
2024-07-30 06:00:39 +00:00
|
|
|
chrono = "0.4.38"
|
2024-07-29 18:06:23 +00:00
|
|
|
colog = "1.3.0"
|
2024-07-30 06:00:39 +00:00
|
|
|
colored = "2.1.0"
|
2024-08-06 08:34:18 +00:00
|
|
|
nostr-sdk = "0.33"
|
2024-07-09 14:56:08 +00:00
|
|
|
tokio = { version = "1.0.0", features = ["rt", "rt-multi-thread", "macros"] }
|
2024-07-29 19:56:30 +00:00
|
|
|
once_cell = "1.19.0"
|