forked from lavina/lavina
74 lines
2.1 KiB
TOML
74 lines
2.1 KiB
TOML
[workspace]
|
|
members = [
|
|
".",
|
|
"crates/lavina-core",
|
|
"crates/proto-irc",
|
|
"crates/projection-irc",
|
|
"crates/proto-xmpp",
|
|
"crates/mgmt-api",
|
|
"crates/sasl",
|
|
]
|
|
|
|
[workspace.package]
|
|
version = "0.0.3-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.10.0"
|
|
quick-xml = { version = "0.31.0", features = ["async-tokio"] }
|
|
lazy_static = "1.4.0"
|
|
regex = "1.7.1"
|
|
derive_more = "0.99.17"
|
|
clap = { version = "4.4.4", features = ["derive"] }
|
|
serde = { version = "1.0.152", features = ["rc", "serde_derive"] }
|
|
tracing = "0.1.37" # logging & tracing api
|
|
prometheus = { version = "0.13.3", default-features = false }
|
|
base64 = "0.22.0"
|
|
lavina-core = { path = "crates/lavina-core" }
|
|
tracing-subscriber = "0.3.16"
|
|
sasl = { path = "crates/sasl" }
|
|
chrono = "0.4.37"
|
|
reqwest = { version = "0.12.0", default-features = false, features = ["json"] }
|
|
|
|
[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.1", features = ["server", "http1"] } # http server
|
|
http-body-util = "0.1.0"
|
|
hyper-util = { version = "0.1", features = ["server", "http1", "tokio"] }
|
|
serde.workspace = true
|
|
serde_json = "1.0.93"
|
|
tokio.workspace = true
|
|
tracing.workspace = true
|
|
tracing-subscriber.workspace = true
|
|
futures-util.workspace = true
|
|
prometheus.workspace = true
|
|
nonempty.workspace = true
|
|
derive_more.workspace = true
|
|
lavina-core.workspace = true
|
|
projection-irc = { path = "crates/projection-irc" }
|
|
projection-xmpp = { path = "crates/projection-xmpp" }
|
|
mgmt-api = { path = "crates/mgmt-api" }
|
|
clap.workspace = true
|
|
opentelemetry = "0.22.0"
|
|
opentelemetry-semantic-conventions = "0.14.0"
|
|
opentelemetry_sdk = { version = "0.22.1", features = ["rt-tokio"] }
|
|
opentelemetry-otlp = "0.15.0"
|
|
tracing-opentelemetry = "0.23.0"
|
|
chrono.workspace = true
|
|
|
|
[dev-dependencies]
|
|
assert_matches.workspace = true
|
|
regex = "1.7.1"
|
|
reqwest.workspace = true
|