diff --git a/Cargo.lock b/Cargo.lock index 4738340651..1bc5a74e57 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3910,10 +3910,6 @@ name = "whoami" version = "1.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "45dbc71f0cdca27dc261a9bd37ddec174e4a0af2b900b890f378460f745426e3" -dependencies = [ - "wasm-bindgen", - "web-sys", -] [[package]] name = "winapi" diff --git a/sqlx-mysql/Cargo.toml b/sqlx-mysql/Cargo.toml index 7347839645..12765fa0bb 100644 --- a/sqlx-mysql/Cargo.toml +++ b/sqlx-mysql/Cargo.toml @@ -61,7 +61,7 @@ smallvec = "1.7.0" stringprep = "0.1.2" thiserror = "1.0.35" tracing = { version = "0.1.37", features = ["log"] } -whoami = "1.2.1" +whoami = { version = "1.2.1", default-features = false } serde = { version = "1.0.144", optional = true } diff --git a/sqlx-postgres/Cargo.toml b/sqlx-postgres/Cargo.toml index 9e6d083883..7919457e58 100644 --- a/sqlx-postgres/Cargo.toml +++ b/sqlx-postgres/Cargo.toml @@ -62,7 +62,7 @@ smallvec = "1.7.0" stringprep = "0.1.2" thiserror = "1.0.35" tracing = { version = "0.1.37", features = ["log"] } -whoami = "1.2.1" +whoami = { version = "1.2.1", default-features = false } serde = { version = "1.0.144", features = ["derive"] } serde_json = { version = "1.0.85", features = ["raw_value"] } diff --git a/src/macros/mod.rs b/src/macros/mod.rs index df8588e0fe..802c5def96 100644 --- a/src/macros/mod.rs +++ b/src/macros/mod.rs @@ -733,7 +733,7 @@ macro_rules! query_file_scalar_unchecked ( /// /// This is because our ability to tell the compiler to watch external files for changes /// from a proc-macro is very limited. The compiler by default only re-runs proc macros when -/// one ore more source files have changed, because normally it shouldn't have to otherwise. SQLx is +/// one or more source files have changed, because normally it shouldn't have to otherwise. SQLx is /// just weird in that external factors can change the output of proc macros, much to the chagrin of /// the compiler team and IDE plugin authors. ///