Skip to content

Commit

Permalink
dependency version bump + cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
proycon committed Nov 18, 2024
1 parent 6ad8977 commit 492cdb2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ axum = "0.7.7"
clap = { version = "4.5.20", features = ["derive"] }
serde = { version = "1.0.215", features = ["derive"] }
serde_json = "1.0.133"
stam = "0.16.4"
stam-tools = "0.9.1"
stam = "0.16.5"
stam-tools = "0.9.2"
tokio = { version = "1.41.0", features = ["macros","rt-multi-thread","signal"] }
tower = "0.5.1"
tower-http = { version = "0.6.1", features= ["trace", "normalize-path"] }
Expand Down
5 changes: 1 addition & 4 deletions src/main.rs
Original file line number Diff line number Diff line change
@@ -1,19 +1,16 @@
use axum::{
body::Body, extract::Path, extract::Query, extract::State, http::HeaderMap, http::HeaderValue,
http::Request, routing::get, routing::post, Form, Router, ServiceExt,
http::Request, routing::get, routing::post, Form, Router,
};
use clap::Parser;
use serde::Deserialize;
use serde_json::value::Value;
use stam::FindText;
use stam::WebAnnoConfig;
use std::collections::BTreeMap;
use std::collections::HashMap;
use std::sync::Arc;
use std::time::Duration;
use tokio::signal;
use tower::layer::Layer;
use tower_http::normalize_path::NormalizePathLayer;
use tower_http::trace::TraceLayer;
use tracing::{debug, error};

Expand Down

0 comments on commit 492cdb2

Please sign in to comment.