chipsenkbeil / vimwiki-rs

Rust library and tooling to parse, render, and modify vimwiki text and files.
56 stars 2 forks source link

Build is failed #97

Closed Mephistophiles closed 3 years ago

Mephistophiles commented 3 years ago

Commit 7b4644008b93b7e7056767b758e11f18b6bcd2b7 broke the build

error[E0432]: unresolved import `vimwiki::collections`
 --> vimwiki-server/src/program/graphql/elements/node.rs:4:5
  |
4 | use vimwiki::collections;
  |     ^^^^^^^^^^^^^^^^^^^^ no `collections` in the root

error[E0432]: unresolved import `vimwiki::collections`
  --> vimwiki-server/src/program/graphql/elements/mod.rs:10:15
   |
10 | use vimwiki::{collections, elements, Located};
   |               ^^^^^^^^^^^ no `collections` in the root

error[E0432]: unresolved import `vimwiki::collections`
  --> vimwiki-server/src/program/database/file.rs:10:5
   |
10 |     collections::ElementForest, elements::Page, Language, ParseError,
   |     ^^^^^^^^^^^ could not find `collections` in `vimwiki`

error[E0432]: unresolved import `vimwiki::alloc`
  --> vimwiki-server/src/program/database/mod.rs:18:14
   |
18 | use vimwiki::alloc::{ShareableIdAllocator, GLOBAL_ID_ALLOCATOR};
   |              ^^^^^ could not find `alloc` in `vimwiki`
chipsenkbeil commented 3 years ago

Yes, I'm about to add in a replacement for the tree and allocator used by the server. Finishing up entity-rs 0.1.0. If you need a binary, stick with vimwiki/vimwiki-server v0.1.0-alpha.5 until I get the chance to introduce the entity crate into the server.

chipsenkbeil commented 3 years ago

Build is now passing after merging in #100.