[package] name = "titanircd" version = "0.1.0" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] actix = "0.13" actix-rt = "2.8" anyhow = "1.0" argon2 = "0.4" base64 = "0.21.0" bitflags = "2.0.2" bytes = "1.4" const_format = "0.2" chrono = "0.4" clap = { version = "4.1", features = ["cargo", "derive", "std", "suggestions", "color"] } futures = "0.3" rand = "0.8" serde = { version = "1.0", features = ["derive"] } serde-humantime = "0.1" sqlx = { version = "0.6", features = ["runtime-actix-rustls", "sqlite", "any"] } tracing = "0.1" tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] } toml = "0.7" tokio = { version = "1.25", features = ["full"] } tokio-stream = { version = "0.1", features = ["net"] } tokio-util = { version = "0.7", features = ["codec"] } irc-proto = "0.15" itertools = "0.10" [patch."crates-io"] irc-proto = { git = "https://github.com/JordanForks/irc" }