Skip to content

Commit

Permalink
Undo changes to the Extractor
Browse files Browse the repository at this point in the history
These changes have been moved, see (evaera#147)
  • Loading branch information
YetAnotherClown committed Jul 10, 2024
1 parent e1c7339 commit d3082b5
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 15 deletions.
24 changes: 17 additions & 7 deletions extractor/Cargo.lock

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

8 changes: 4 additions & 4 deletions extractor/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "moonwave"
description = "Moonwave is a tool for generating documentation from comments in Lua source code."
version = "1.1.2"
version = "1.1.3"
authors = ["eryn L. K. <[email protected]>"]
license = "MPL-2.0"
homepage = "https://eryn.io/moonwave/"
Expand All @@ -22,18 +22,18 @@ opt-level = 1
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
full_moon = { version = "0.19.0", features = ["stacker"] }
full_moon = { version = "0.18.1", features = ["stacker"] }
walkdir = "2"
anyhow = "1.0.28"
codespan-reporting = "0.11.1"
codespan-reporting = "0.9.5"
structopt = "0.3.18"
serde = { version = "1.0.116", features = ["derive"] }
serde_json = "1.0.58"
pathdiff = "0.2.0"
fs-err = "2.6.0"

[dev-dependencies]
insta = { version = "1.39.0", features = ["yaml"] }
insta = { version = "1.1.0", features = ["yaml"] }

[features]
default = ["roblox"]
Expand Down
5 changes: 1 addition & 4 deletions extractor/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -214,10 +214,7 @@ fn find_files(

fn report_errors(errors: Vec<Error>, codespan_files: &SimpleFiles<String, String>) {
let writer = StandardStream::stderr(ColorChoice::Auto);
let config = codespan_reporting::term::Config {
end_context_lines: usize::MAX,
..Default::default()
};
let config = codespan_reporting::term::Config::default();

for error in errors {
match error {
Expand Down

0 comments on commit d3082b5

Please sign in to comment.