bump gettext-macros version so it compiles with latest nightlies #674

Open
opened 2019-10-10 08:26:02 +00:00 by igalic · 0 comments
igalic commented 2019-10-10 08:26:02 +00:00 (Migrated from github.com)

When trying to compile Plume with cargo +nightly …, I get the following errors:

error[E0599]: no method named `is_xid_start` found for type `char` in the current scope
   --> /home/meena/.cargo/registry/src/github.com-1ecc6299db9ec823/runtime-fmt-0.3.0/src/fmt_macros.rs:422:34
    |
422 |             Some(&(pos, c)) if c.is_xid_start() => {
    |                                  ^^^^^^^^^^^^ method not found in `char`

error[E0599]: no method named `is_xid_continue` found for type `char` in the current scope
   --> /home/meena/.cargo/registry/src/github.com-1ecc6299db9ec823/runtime-fmt-0.3.0/src/fmt_macros.rs:431:18
    |
431 |             if c.is_xid_continue() {
    |                  ^^^^^^^^^^^^^^^ method not found in `char`

error: aborting due to 2 previous errors

For more information about this error, try `rustc --explain E0599`.
error: Could not compile `runtime-fmt`.
warning: build failed, waiting for other jobs to finish...
error: build failed

These issues have been fixed in runtime-fmt: https://github.com/SpaceManiac/runtime-fmt/issues/10 and released (as 0.4.1)
The latest gettext-macros already "pins" "0.4", so bumping that should get this issue resolved.

When trying to compile Plume with `cargo +nightly …`, I get the following errors: ``` error[E0599]: no method named `is_xid_start` found for type `char` in the current scope --> /home/meena/.cargo/registry/src/github.com-1ecc6299db9ec823/runtime-fmt-0.3.0/src/fmt_macros.rs:422:34 | 422 | Some(&(pos, c)) if c.is_xid_start() => { | ^^^^^^^^^^^^ method not found in `char` error[E0599]: no method named `is_xid_continue` found for type `char` in the current scope --> /home/meena/.cargo/registry/src/github.com-1ecc6299db9ec823/runtime-fmt-0.3.0/src/fmt_macros.rs:431:18 | 431 | if c.is_xid_continue() { | ^^^^^^^^^^^^^^^ method not found in `char` error: aborting due to 2 previous errors For more information about this error, try `rustc --explain E0599`. error: Could not compile `runtime-fmt`. warning: build failed, waiting for other jobs to finish... error: build failed ``` These issues have been fixed in runtime-fmt: https://github.com/SpaceManiac/runtime-fmt/issues/10 and released (as 0.4.1) The latest gettext-macros already "pins" "0.4", so bumping that should get this issue resolved. - **Plume version:** 006b44f580083f501c677b511c7c4d84f9848adf
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference: Plume/Plume#674
No description provided.