diff options
author | FxQnLr <[email protected]> | 2023-11-29 15:48:26 +0100 |
---|---|---|
committer | FxQnLr <[email protected]> | 2023-11-29 15:48:26 +0100 |
commit | 6f94a825485b1d622d8ebe88ddf3e2f426d1c69c (patch) | |
tree | babf4a5c1dcb7746185a1c97e0d889df07df20e8 /src/routes/device.rs | |
parent | da6367885d31698464e1bec122e3e673974427c6 (diff) | |
download | webol-6f94a825485b1d622d8ebe88ddf3e2f426d1c69c.tar webol-6f94a825485b1d622d8ebe88ddf3e2f426d1c69c.tar.gz webol-6f94a825485b1d622d8ebe88ddf3e2f426d1c69c.zip |
update to axum 0.7 and cargo update
Diffstat (limited to 'src/routes/device.rs')
-rw-r--r-- | src/routes/device.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/routes/device.rs b/src/routes/device.rs index 678d117..a3308d4 100644 --- a/src/routes/device.rs +++ b/src/routes/device.rs | |||
@@ -1,7 +1,7 @@ | |||
1 | use std::sync::Arc; | 1 | use std::sync::Arc; |
2 | use axum::extract::State; | 2 | use axum::extract::State; |
3 | use axum::headers::HeaderMap; | ||
4 | use axum::Json; | 3 | use axum::Json; |
4 | use axum::http::HeaderMap; | ||
5 | use serde::{Deserialize, Serialize}; | 5 | use serde::{Deserialize, Serialize}; |
6 | use serde_json::{json, Value}; | 6 | use serde_json::{json, Value}; |
7 | use tracing::{debug, info}; | 7 | use tracing::{debug, info}; |