When running cargo build --features sqlite, I get the following:
error[E0560]: struct `OAuthRequest` has no field named `did`
--> src/storage/sqlite/oauth_request_storage.rs:162:13
|
162 | did: String::new(), // Empty string - field will be ignored
| ^^^ `OAuthRequest` does not have this field
|
= note: all struct fields are already assigned
The build succeeds if I do a default cargo run --bin aip build and run without using sqlite.