A better Rust ATProto crate

disable jacquard default-features in jaquard-axum dependencies

By default, jacquard pulls in rouille to implement local oauth. This is most
certainly the correct choice for most users, but if you are implementing a
server (and therefore pulling in jacquard-axum), it's probably not what you
want. Therefore, jacquard-axum should depend on jacquard without default
features.

authored by thoth.ptnote.dev and committed by

Tangled 0d9dc178 3dd31578

+1 -1
+1 -1
crates/jacquard-axum/Cargo.toml
··· 22 [dependencies] 23 axum = "0.8.6" 24 bytes.workspace = true 25 - jacquard = { version = "0.5", path = "../jacquard" } 26 jacquard-common = { version = "0.5", path = "../jacquard-common", features = ["reqwest-client"] } 27 jacquard-derive = { version = "0.5.2", path = "../jacquard-derive" } 28 jacquard-identity = { version = "0.5", path = "../jacquard-identity", optional = true }
··· 22 [dependencies] 23 axum = "0.8.6" 24 bytes.workspace = true 25 + jacquard = { version = "0.5", path = "../jacquard", default-features = false, features = ["api"] } 26 jacquard-common = { version = "0.5", path = "../jacquard-common", features = ["reqwest-client"] } 27 jacquard-derive = { version = "0.5.2", path = "../jacquard-derive" } 28 jacquard-identity = { version = "0.5", path = "../jacquard-identity", optional = true }