diff options
Diffstat (limited to 'rs/server')
-rw-r--r-- | rs/server/Cargo.toml | 1 | ||||
-rw-r--r-- | rs/server/src/main.rs | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/rs/server/Cargo.toml b/rs/server/Cargo.toml index edb76d8..0572cac 100644 --- a/rs/server/Cargo.toml +++ b/rs/server/Cargo.toml | |||
@@ -10,6 +10,7 @@ axum = "0.7" | |||
10 | base64 = "0.21" | 10 | base64 = "0.21" |
11 | chrono = { version = "0.4", features = ["serde"] } | 11 | chrono = { version = "0.4", features = ["serde"] } |
12 | common = { path = "../common" } | 12 | common = { path = "../common" } |
13 | env_logger = "0.9.0" | ||
13 | mime = "0.3" | 14 | mime = "0.3" |
14 | serde = { version = "1", features = ["derive"] } | 15 | serde = { version = "1", features = ["derive"] } |
15 | serde_json = "1" | 16 | serde_json = "1" |
diff --git a/rs/server/src/main.rs b/rs/server/src/main.rs index b346bc6..e816dde 100644 --- a/rs/server/src/main.rs +++ b/rs/server/src/main.rs | |||
@@ -160,6 +160,7 @@ fn get_s3_client(env: &Env) -> Result<aws_sdk_s3::Client, std::io::Error> { | |||
160 | 160 | ||
161 | #[tokio::main] | 161 | #[tokio::main] |
162 | async fn main() -> ExitCode { | 162 | async fn main() -> ExitCode { |
163 | env_logger::init(); | ||
163 | tracing_subscriber::fmt::init(); | 164 | tracing_subscriber::fmt::init(); |
164 | 165 | ||
165 | let env = match Env::load() { | 166 | let env = match Env::load() { |