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-12-05 22:04:57 +00:00
|
|
|
version = "0.7.1"
|
2024-11-09 19:00:28 +00:00
|
|
|
rust-version = "1.82"
|
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-11-12 18:52:05 +00:00
|
|
|
# Basics
|
2024-12-06 21:10:14 +00:00
|
|
|
tokio = { version = "1.42", features = ["rt", "rt-multi-thread", "macros"] }
|
2024-11-12 18:52:05 +00:00
|
|
|
regex = "1.10.6"
|
|
|
|
# System
|
2024-08-07 12:03:29 +00:00
|
|
|
log = "0.4"
|
2024-08-13 18:24:25 +00:00
|
|
|
env_logger = "0.11"
|
2024-08-07 12:03:29 +00:00
|
|
|
colog = "1.3"
|
|
|
|
colored = "2.1"
|
2024-11-12 18:52:05 +00:00
|
|
|
rustyline = { git = "https://github.com/xeruf/rustyline", rev = "465b14d" }
|
|
|
|
# OS-Specific Abstractions
|
2024-12-06 20:40:26 +00:00
|
|
|
keyring = "3"
|
2024-11-12 18:52:05 +00:00
|
|
|
directories = "5.0"
|
2024-11-22 12:37:19 +00:00
|
|
|
whoami = "1.5"
|
2024-12-06 19:57:47 +00:00
|
|
|
# slint = "1.8"
|
2024-11-12 18:52:05 +00:00
|
|
|
# Application Utils
|
|
|
|
itertools = "0.12"
|
|
|
|
chrono = "0.4"
|
2024-08-15 09:21:21 +00:00
|
|
|
parse_datetime = "0.5.0"
|
|
|
|
interim = { version = "0.1", features = ["chrono"] }
|
2024-11-18 13:52:52 +00:00
|
|
|
nostr-sdk = { git = "https://github.com/rust-nostr/nostr", rev = "e82bc787bdd8490ceadb034fe4483e4df1e91b2a" }
|
2024-08-15 09:21:21 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-12-06 21:10:14 +00:00
|
|
|
mostr = { path = ".", default-features = false }
|
2024-12-06 20:40:26 +00:00
|
|
|
|
|
|
|
[features]
|
|
|
|
default = ["persistence"]
|
|
|
|
persistence = ["keyring/apple-native", "keyring/windows-native", "keyring/linux-native-sync-persistent", "keyring/crypto-rust"]
|