Advertisement
Guest User

Untitled

a guest
May 2nd, 2019
203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.50 KB | None | 0 0
  1. Compiling termion v1.5.2
  2. error[E0433]: failed to resolve: maybe a missing `extern crate sys;`?
  3. --> C:\Users\cbendell\.cargo\registry\src\github.com-1ecc6299db9ec823\termion-1.5.2\src\lib.rs:24:9
  4. |
  5. 24 | pub use sys::size::terminal_size;
  6. | ^^^ maybe a missing `extern crate sys;`?
  7.  
  8. error[E0433]: failed to resolve: maybe a missing `extern crate sys;`?
  9. --> C:\Users\cbendell\.cargo\registry\src\github.com-1ecc6299db9ec823\termion-1.5.2\src\lib.rs:25:9
  10. |
  11. 25 | pub use sys::tty::{is_tty, get_tty};
  12. | ^^^ maybe a missing `extern crate sys;`?
  13.  
  14. error[E0433]: failed to resolve: maybe a missing `extern crate sys;`?
  15. --> C:\Users\cbendell\.cargo\registry\src\github.com-1ecc6299db9ec823\termion-1.5.2\src\async.rs:5:5
  16. |
  17. 5 | use sys::tty::get_tty;
  18. | ^^^ maybe a missing `extern crate sys;`?
  19.  
  20. error[E0433]: failed to resolve: maybe a missing `extern crate sys;`?
  21. --> C:\Users\cbendell\.cargo\registry\src\github.com-1ecc6299db9ec823\termion-1.5.2\src\raw.rs:29:5
  22. |
  23. 29 | use sys::attr::{get_terminal_attr, raw_terminal_attr, set_terminal_attr};
  24. | ^^^ maybe a missing `extern crate sys;`?
  25.  
  26. error[E0432]: unresolved import `sys`
  27. --> C:\Users\cbendell\.cargo\registry\src\github.com-1ecc6299db9ec823\termion-1.5.2\src\raw.rs:28:5
  28. |
  29. 28 | use sys::Termios;
  30. | ^^^ maybe a missing `extern crate sys;`?
  31.  
  32. error[E0425]: cannot find function `get_tty` in this scope
  33. --> C:\Users\cbendell\.cargo\registry\src\github.com-1ecc6299db9ec823\termion-1.5.2\src\async.rs:14:36
  34. |
  35. 14 | thread::spawn(move || for i in get_tty().unwrap().bytes() {
  36. | ^^^^^^^ not found in this scope
  37.  
  38. error[E0425]: cannot find function `get_tty` in this scope
  39. --> C:\Users\cbendell\.cargo\registry\src\github.com-1ecc6299db9ec823\termion-1.5.2\src\async.rs:43:36
  40. |
  41. 43 | thread::spawn(move || for i in get_tty().unwrap().bytes() {
  42. | ^^^^^^^ not found in this scope
  43.  
  44. error[E0425]: cannot find function `set_terminal_attr` in this scope
  45. --> C:\Users\cbendell\.cargo\registry\src\github.com-1ecc6299db9ec823\termion-1.5.2\src\raw.rs:45:9
  46. |
  47. 45 | set_terminal_attr(&self.prev_ios).unwrap();
  48. | ^^^^^^^^^^^^^^^^^ not found in this scope
  49.  
  50. error[E0425]: cannot find function `get_terminal_attr` in this scope
  51. --> C:\Users\cbendell\.cargo\registry\src\github.com-1ecc6299db9ec823\termion-1.5.2\src\raw.rs:90:23
  52. |
  53. 90 | let mut ios = get_terminal_attr()?;
  54. | ^^^^^^^^^^^^^^^^^ not found in this scope
  55.  
  56. error[E0425]: cannot find function `raw_terminal_attr` in this scope
  57. --> C:\Users\cbendell\.cargo\registry\src\github.com-1ecc6299db9ec823\termion-1.5.2\src\raw.rs:93:9
  58. |
  59. 93 | raw_terminal_attr(&mut ios);
  60. | ^^^^^^^^^^^^^^^^^ not found in this scope
  61.  
  62. error[E0425]: cannot find function `set_terminal_attr` in this scope
  63. --> C:\Users\cbendell\.cargo\registry\src\github.com-1ecc6299db9ec823\termion-1.5.2\src\raw.rs:95:9
  64. |
  65. 95 | set_terminal_attr(&ios)?;
  66. | ^^^^^^^^^^^^^^^^^ not found in this scope
  67.  
  68. error[E0425]: cannot find function `set_terminal_attr` in this scope
  69. --> C:\Users\cbendell\.cargo\registry\src\github.com-1ecc6299db9ec823\termion-1.5.2\src\raw.rs:106:9
  70. |
  71. 106 | set_terminal_attr(&self.prev_ios)?;
  72. | ^^^^^^^^^^^^^^^^^ not found in this scope
  73.  
  74. error[E0425]: cannot find function `get_terminal_attr` in this scope
  75. --> C:\Users\cbendell\.cargo\registry\src\github.com-1ecc6299db9ec823\termion-1.5.2\src\raw.rs:111:23
  76. |
  77. 111 | let mut ios = get_terminal_attr()?;
  78. | ^^^^^^^^^^^^^^^^^ not found in this scope
  79.  
  80. error[E0425]: cannot find function `raw_terminal_attr` in this scope
  81. --> C:\Users\cbendell\.cargo\registry\src\github.com-1ecc6299db9ec823\termion-1.5.2\src\raw.rs:112:9
  82. |
  83. 112 | raw_terminal_attr(&mut ios);
  84. | ^^^^^^^^^^^^^^^^^ not found in this scope
  85.  
  86. error[E0425]: cannot find function `set_terminal_attr` in this scope
  87. --> C:\Users\cbendell\.cargo\registry\src\github.com-1ecc6299db9ec823\termion-1.5.2\src\raw.rs:113:9
  88. |
  89. 113 | set_terminal_attr(&ios)?;
  90. | ^^^^^^^^^^^^^^^^^ not found in this scope
  91.  
  92. error: aborting due to 15 previous errors
  93.  
  94. Some errors occurred: E0425, E0432, E0433.
  95. For more information about an error, try `rustc --explain E0425`.
  96. error: Could not compile `termion`.
  97. warning: build failed, waiting for other jobs to finish...
  98. error: build failed
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement