[workspace] members = [ ".", "crates/proto-irc" ] [workspace.package] version = "0.0.1-dev" [workspace.dependencies] nom = "7.1.3" assert_matches = "1.5.0" tokio = { version = "1.24.1", features = ["full"] } # async runtime futures-util = "0.3.25" anyhow = "1.0.68" # error utils nonempty = "0.8.1" [package] name = "lavina" version.workspace = true edition = "2021" publish = false [dependencies] anyhow.workspace = true figment = { version = "0.10.8", features = ["env", "toml"] } # configuration files hyper = { version = "1.0.0-rc.3,<1.0.0-rc.4", features = ["server", "http1"] } # http server http-body-util = "0.1.0-rc.3" serde = { version = "1.0.152", features = ["rc", "serde_derive"] } serde_json = "1.0.93" tokio.workspace = true tracing = "0.1.37" # logging & tracing api tracing-subscriber = "0.3.16" futures-util.workspace = true prometheus = { version = "0.13.3", default-features = false } regex = "1.7.1" lazy_static = "1.4.0" nom.workspace = true nonempty.workspace = true tokio-rustls = "0.24.1" rustls-pemfile = "1.0.2" quick-xml = { version = "0.30.0", features = ["async-tokio"] } derive_more = "0.99.17" uuid = { version = "1.3.0", features = ["v4"] } sqlx = { version = "0.7.0-alpha.2", features = ["sqlite", "migrate"] } proto-irc = { path = "crates/proto-irc" } [dev-dependencies] assert_matches.workspace = true regex = "1.7.1" reqwest = { version = "0.11", default-features = false }