lavina/Cargo.toml

72 lines
2.0 KiB
TOML
Raw Normal View History

[workspace]
members = [
".",
2023-09-30 23:12:11 +00:00
"crates/lavina-core",
2023-09-24 20:59:34 +00:00
"crates/proto-irc",
"crates/projection-irc",
"crates/proto-xmpp",
2023-09-24 20:59:34 +00:00
"crates/mgmt-api",
2023-10-13 14:54:08 +00:00
"crates/sasl",
]
[workspace.package]
2024-04-26 11:30:57 +00:00
version = "0.0.2"
[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
2024-03-20 18:53:51 +00:00
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"
2023-09-22 15:24:36 +00:00
clap = { version = "4.4.4", features = ["derive"] }
2023-09-24 20:59:34 +00:00
serde = { version = "1.0.152", features = ["rc", "serde_derive"] }
2023-09-30 23:12:11 +00:00
tracing = "0.1.37" # logging & tracing api
prometheus = { version = "0.13.3", default-features = false }
2024-04-19 12:27:19 +00:00
base64 = "0.22.0"
lavina-core = { path = "crates/lavina-core" }
tracing-subscriber = "0.3.16"
2023-10-13 14:54:08 +00:00
sasl = { path = "crates/sasl" }
chrono = "0.4.37"
2023-01-19 14:25:52 +00:00
[package]
name = "lavina"
version.workspace = true
2023-01-19 14:25:52 +00:00
edition = "2021"
2023-08-28 12:55:01 +00:00
publish = false
2023-01-19 14:25:52 +00:00
[dependencies]
anyhow.workspace = true
2023-01-19 14:25:52 +00:00
figment = { version = "0.10.8", features = ["env", "toml"] } # configuration files
2023-12-10 21:22:26 +00:00
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"] }
2023-09-24 20:59:34 +00:00
serde.workspace = true
2023-02-15 17:10:54 +00:00
serde_json = "1.0.93"
tokio.workspace = true
2023-09-30 23:12:11 +00:00
tracing.workspace = true
tracing-subscriber.workspace = true
futures-util.workspace = true
2023-09-30 23:12:11 +00:00
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" }
2023-09-24 20:59:34 +00:00
mgmt-api = { path = "crates/mgmt-api" }
2023-09-22 15:24:36 +00:00
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"
[dev-dependencies]
assert_matches.workspace = true
regex = "1.7.1"
2024-03-20 18:53:51 +00:00
reqwest = { version = "0.12.0", default-features = false }