22 lines
511 B
TOML
22 lines
511 B
TOML
[package]
|
|
name = "e2e-irc"
|
|
version = "3.0.0"
|
|
edition = "2021"
|
|
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]
|
|
argparse = "0.2.2"
|
|
base64 = "0.21.4"
|
|
dirs = "5.0.1"
|
|
eyre = "0.6.8"
|
|
ircparser-vanten = "0.2.1"
|
|
openssl = "0.10"
|
|
pgp = "0.10.2"
|
|
rand = "0.8.5"
|
|
toml = "0.8.2"
|