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
After upgrading rustfmt stable (using rustup), rusftmt add unexpected spaces in expressions containing many dots.
This is a problem in der-parser and oid-registry, since the notation of a OID is a path with digits and dots.
These spaces seem to be added always after the third group (see examples).
Input
let oid = oid!(1.2.840.113549.1.1.5);let oid2 = oid!(2.5.4.3);
Output
let oid = oid!(1.2.840.113549.1.1.5);let oid2 = oid!(2.5.4.3);
Expected output
let oid = oid!(1.2.840.113549.1.1.5);let oid2 = oid!(2.5.4.3);