This no longer compiles:
extern crate "my-crate" as my_crate1;
What is the new syntax? I did not find anything by doing a search.
Gums in extern box names can be replaced with underscores. Therefore your example should be
extern crate my_crate as my_crate1;
Or, if you want to underline the name, use the following:
extern crate my_crate;
Source: https://habr.com/ru/post/989435/More articles:How to install MarkLogic 8 on Ubuntu 14.04? - ubuntuHow to get field value with ng-change - javascriptSpark DataFrame TimestampType - how to get Year, Month, Day data from a field? - pythonIs there any difference between String ... args and String [] args in Java? - javaCENTOS 6.6 "Errno -1 repomd.xml does not match metalink for updates" when trying to use the yum command to install openssl - linuxStuck with lambda java8 expression - javaArel AND clause and empty state - ruby ββ| fooobar.comWhy do logical operators deny their argument when there is only one argument in R? - rManually authenticated passport - node.jsWhat is haskellng? What is the difference between haskellPackages and haskellngPackages? - haskellAll Articles