Skip to content

Commit

Permalink
Fix error
Browse files Browse the repository at this point in the history
  • Loading branch information
dalance committed Apr 15, 2024
1 parent 4448714 commit 8fe7af3
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
10 changes: 5 additions & 5 deletions playground/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion playground/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ use std::path::PathBuf;
use veryl_analyzer::{namespace_table, symbol_table, Analyzer};
use veryl_emitter::Emitter;
use veryl_formatter::Formatter;
use veryl_metadata::{Build, Doc, Format, Lint, Lockfile, Metadata, Project, Pubfile, Publish};
use veryl_metadata::{
Build, Doc, Format, Lint, Lockfile, Metadata, Project, Pubfile, Publish, Test,
};
use veryl_parser::{resource_table, Parser};
use wasm_bindgen::prelude::*;

Expand Down Expand Up @@ -60,6 +62,7 @@ fn metadata() -> Metadata {
lint: Lint::default(),
publish: Publish::default(),
doc: Doc::default(),
test: Test::default(),
dependencies: HashMap::new(),
metadata_path: "".into(),
pubfile_path: "".into(),
Expand Down

0 comments on commit 8fe7af3

Please sign in to comment.