mostr/Cargo.toml

45 lines
1.1 KiB
TOML
Raw Normal View History

2024-07-09 17:56:08 +03:00
[package]
name = "mostr"
2024-07-26 12:33:03 +03: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"]
version = "0.9.0"
rust-version = "1.82"
2024-07-09 17:56:08 +03:00
edition = "2021"
2024-07-26 12:33:03 +03:00
default-run = "mostr"
2024-07-09 17:56:08 +03:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2025-01-15 23:16:44 +01:00
nostr-sdk = "0.38"
# Basics
2025-01-15 23:16:44 +01:00
tokio = { version = "1", features = ["rt", "rt-multi-thread", "macros"] }
regex = "1.11"
# System
log = "0.4"
env_logger = "0.11"
colog = "1.3"
2025-01-15 23:16:44 +01:00
colored = "2.2"
rustyline = { git = "https://github.com/xeruf/rustyline", rev = "5364854" }
# OS-Specific Abstractions
keyring = "3"
directories = "5.0"
whoami = "1.5"
2024-12-06 20:57:47 +01:00
# slint = "1.8"
# Application Utils
base64 = "0.22"
simple_crypt = "0.2"
itertools = "0.12"
chrono = "0.4"
2025-01-15 23:16:44 +01:00
parse_datetime = "0.5"
interim = { version = "0.1", features = ["chrono"] }
[dev-dependencies]
2024-12-06 22:10:14 +01:00
mostr = { path = ".", default-features = false }
[features]
default = ["persistence"]
persistence = ["keyring/apple-native", "keyring/windows-native", "keyring/linux-native-sync-persistent", "keyring/crypto-rust"]