[package] name = "darkirc" description = "P2P IRC daemon" version = "0.5.1" edition = "2021" authors = ["Dyne.org foundation "] license = "AGPL-3.0-only" homepage = "https://dark.fi" repository = "https://codeberg.org/darkrenaissance/darkfi" [lib] name = "darkirc" crate-type = ["cdylib"] path = "src/lib.rs" [[bin]] name = "darkirc" path = "src/main.rs" [dependencies] darkfi = {path = "../../", features = ["async-daemonize", "event-graph", "rpc", "zk"]} darkfi-sdk = {path = "../../src/sdk", features = ["async"]} darkfi-serial = {version = "0.5.0", features = ["async"]} libc = "0.2.174" # Event Graph DB sled-overlay = "0.1.9" # TLS async-trait = "0.1.88" futures = "0.3.31" futures-rustls = {version = "0.26.0", default-features = false, features = ["logging", "tls12", "ring"]} rustls-pemfile = "2.2.0" # Crypto blake3 = "1.8.2" bcrypt = "0.17.0" crypto_box = {version = "0.9.1", features = ["std", "chacha20"]} rand = "0.8.5" # Misc log = "0.4.27" url = "2.5.4" # Encoding and parsing bs58 = "0.5.1" toml = "0.9.5" semver = "1.0.26" # Daemon easy-parallel = "3.3.1" signal-hook-async-std = "0.3.0" signal-hook = "0.3.18" simplelog = "0.12.2" smol = "2.0.2" # Argument parsing serde = {version = "1.0.219", features = ["derive"]} structopt = "0.3.26" structopt-toml = "0.5.1" # See https://github.com/rust-mobile/android-rs-glue/issues/193 [target.aarch64-linux-android.dependencies] openssl = { version = "*", features = ["vendored"] } rusqlite = {version = "0.36.0", features = ["bundled"]} [lints] workspace = true