[package] name = "nabi-chat" version = "0.1.0" edition = "2021" authors = ["Christoph J. Scherr "] license = "GPL-3.0-or-later" description = "minimalistic encrypted chat application" readme = "README.md" homepage = "https://git.cscherr.de/PlexSheep/nabi-chat" repository = "https://git.cscherr.de/PlexSheep/nabi-chat" keywords = ["chat"] categories = ["command-line-utilities"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [lib] name = "nabi" crate-type = ["rlib"] [[bin]] name = "nabi" path = "src/bin/main.rs" [dependencies] chrono = { version = "0.4.26", features = ["serde"] } clap = { version = "4.3.17", features = ["derive"] } libpt = "0.1.6" ockam = "0.90.0" ockam_core = "0.83.0" serde = { version = "1.0.171", features = ["derive"] } serde_json = "1.0.103"