e2e-irc/Cargo.toml

22 lines
511 B
TOML
Raw Normal View History

[package]
2023-10-15 13:23:40 +02:00
name = "e2e-irc"
2023-10-21 11:10:44 +02:00
version = "3.0.0"
edition = "2021"
2023-10-21 12:04:50 +02:00
license = "GPL-3.0"
keywords = ["irc", "encryption"]
description = "An IRC bouncer that can send encrypted messages"
repository = "https://forgejo.vanten-s.com/vanten-s/e2e-irc/"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2023-10-19 17:08:05 +02:00
argparse = "0.2.2"
base64 = "0.21.4"
2023-10-19 17:08:05 +02:00
dirs = "5.0.1"
2023-10-12 13:59:07 +02:00
eyre = "0.6.8"
2023-10-21 12:04:50 +02:00
ircparser-vanten = "0.2.1"
openssl = "0.10"
pgp = "0.10.2"
2023-10-05 21:16:34 +02:00
rand = "0.8.5"
2023-10-19 17:08:05 +02:00
toml = "0.8.2"