You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Depend on sqlx with minimal features: `sqlx = { version = "0.4", default-features = false, features = ["runtime-async-std-native-tls"] }
cargo tree > dependencies0
Add the macros feature sqlx = { version = "0.4", default-features = false, features = ["runtime-async-std-native-tls", "macros"] }
cargo tree > dependencies1
diff dependencies0 dependencies1 shows the files are the same
It is surprising to me that the dependencies are the same. I expected less dependencies without the feature as these kind of features are usually used to reduce compilation time.
The text was updated successfully, but these errors were encountered:
cargo init --bin foo
cargo tree > dependencies0
macros
featuresqlx = { version = "0.4", default-features = false, features = ["runtime-async-std-native-tls", "macros"] }
cargo tree > dependencies1
diff dependencies0 dependencies1
shows the files are the sameIt is surprising to me that the dependencies are the same. I expected less dependencies without the feature as these kind of features are usually used to reduce compilation time.
The text was updated successfully, but these errors were encountered: