Skip to content

Commit

Permalink
🚑 Fixed windows building
Browse files Browse the repository at this point in the history
  • Loading branch information
nwrenger committed Apr 28, 2024
1 parent 2cd571d commit cf4409f
Showing 1 changed file with 24 additions and 7 deletions.
31 changes: 24 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,28 +17,45 @@ strip = true

[dependencies]
axum = "0.7"
axum-extra = { version = "0.9", features = ["typed-header"]}
axum-extra = { version = "0.9", features = ["typed-header"] }
base64 = "0.22"
chrono = "0.4"
clap = { version = "4.4", features = ["derive"] }
csv = "1.3"
email_address = "0.2"
hyper = "1.1"
hyper-util = "0.1"
lettre = { version = "0.11", default-features = false, features = ["builder", "smtp-transport", "rustls-tls"] }
lettre = { version = "0.11", default-features = false, features = [
"builder",
"smtp-transport",
"rustls-tls",
] }
oauth2 = { version = "5.0.0-alpha.4" }
rand = "0.8"
reqwest = { version = "0.12", default-features = false, features = ["rustls-tls", "json"] }
reqwest = { version = "0.12", default-features = false, features = [
"rustls-tls",
"json",
] }
roxmltree = "0.19"
rusqlite = { version = "0.31", features = ["bundled"], optional = true }
rustls = "0.23"
rustls = { version = "0.23", default-features = false }
rustls-pemfile = "2.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1.36", features = ["fs", "sync", "time", "macros", "rt-multi-thread"]}
tokio-rustls = "0.26"
tokio = { version = "1.36", features = [
"fs",
"sync",
"time",
"macros",
"rt-multi-thread",
] }
tokio-rustls = { version = "0.26", default-features = false }
tower = { version = "0.4", features = ["util", "timeout"] }
tower-http = { version = "0.5", features = ["fs", "trace", "compression-deflate"] }
tower-http = { version = "0.5", features = [
"fs",
"trace",
"compression-deflate",
] }
tower-service = "0.3"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
Expand Down

0 comments on commit cf4409f

Please sign in to comment.