aboutsummaryrefslogtreecommitdiffstats
path: root/crates/configuration
diff options
context:
space:
mode:
Diffstat (limited to 'crates/configuration')
-rw-r--r--crates/configuration/Cargo.toml34
-rw-r--r--crates/configuration/src/main.rs3
2 files changed, 37 insertions, 0 deletions
diff --git a/crates/configuration/Cargo.toml b/crates/configuration/Cargo.toml
new file mode 100644
index 0000000..86f6923
--- /dev/null
+++ b/crates/configuration/Cargo.toml
@@ -0,0 +1,34 @@
+[package]
+name = "warden-config"
+version = "0.1.0"
+edition = "2024"
+license.workspace = true
+homepage.workspace = true
+documentation.workspace = true
+description.workspace = true
+
+[dependencies]
+anyhow.workspace = true
+clap = { workspace = true, features = ["derive"] }
+config = { workspace = true, features = ["convert-case", "toml"] }
+metrics.workspace = true
+metrics-exporter-prometheus.workspace = true
+serde = { workspace = true, features = ["derive"] }
+serde_json.workspace = true
+sqlx = { workspace = true, features = [
+ "macros",
+ "migrate",
+ "postgres",
+ "runtime-tokio",
+ "time",
+ "tls-rustls",
+] }
+time.workspace = true
+tokio = { workspace = true, features = ["macros", "rt-multi-thread", "signal"] }
+tonic.workspace = true
+tracing.workspace = true
+warden-core = { workspace = true, features = ["configuration", "serde-time"] }
+
+[dependencies.warden-stack]
+workspace = true
+features = ["api", "cache", "postgres", "opentelemetry-tonic", "tracing-loki"]
diff --git a/crates/configuration/src/main.rs b/crates/configuration/src/main.rs
new file mode 100644
index 0000000..e7a11a9
--- /dev/null
+++ b/crates/configuration/src/main.rs
@@ -0,0 +1,3 @@
+fn main() {
+ println!("Hello, world!");
+}