Dániel Buga
Dániel Buga
Looks like src/env.rs contains some unix-specific code which makes it impossible to install drone on Windows. Would it be possible to replace it with a platform-independent implementation? Compilation log: ```...
I'm trying to use chevron in my project, where I was previously using pystache. Pystache was really flexible in what I could pass to it, and it would treat anything...
The [docs](https://docs.rs/domain/0.6.1/domain/) lists a bunch of feature flags that have been removed or merged with others. I think it may not have been updated when those changes happened, although I...
Chapter 9 begins with mentioning sharing our code with others. The chapter also mentions crates.io, without anything about how to use other crates or cargo in general, also how to...
Macros aren't explained, but they are used in chapters 4 and 6
https://github.com/richardanaya/tour_of_rust/blob/84568bf70bba4b2702eb509867d828def86295c9/lessons/en/chapter_7.yaml#L29 According to [the book](https://doc.rust-lang.org/book/ch17-00-oop.html) Rust can be thought of both OOP and not OOP. I would argue Rust supports OOP, except instead of inheritance (which has it's own disadvantages,...
https://github.com/richardanaya/tour_of_rust/blob/84568bf70bba4b2702eb509867d828def86295c9/lessons/en/chapter_4.yaml#L39 Technically, there is `std::ptr::null` so this sentence is technically incorrect. Should we add a footnote expanding on this?
https://github.com/richardanaya/tour_of_rust/blob/84568bf70bba4b2702eb509867d828def86295c9/lessons/en/chapter_3.yaml#L86 I might be wrong here, but I think a String struct is stack-allocated, so the reference to the actual heap-allocated memory is itself stack allocated.
``` error[E0599]: no variant or associated item named `Toml` found for enum `LapceLanguage` in the current scope --> lapce-data\src\data.rs:2746:41 | 2746 | doc.set_language(LapceLanguage::Toml); | ^^^^ variant or associated item not...