Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
xasopheno committed Jun 25, 2023
1 parent e25fd34 commit 53a4fbd
Show file tree
Hide file tree
Showing 12 changed files with 146 additions and 75 deletions.
160 changes: 118 additions & 42 deletions Cargo.lock

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

11 changes: 5 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,17 +45,16 @@ opmap = { path = "opmap", version = "^1.0.47" }
weresocool_shared = { path = "shared", version = "^1.0.47" }
weresocool_analyze = { path = "analyze", version = "^1.0.47" }
weresocool_ring_buffer = { path = "ring_buffer", version = "^1.0.47" }
clap = "4.0.27"
thiserror = "1.0.31"
clap = "4.3.8"
thiserror = "1.0.4"
notify = "5.0.0-pre.14"
zip = { version="0.6.6", optional=true }
hound = { version="3.4.0", optional=true }
assert_cmd = { version="2.0.4", optional=true }
serde = { version = "1.0.119", features = ["derive"] }
serde_json = "1.0.64"
serde_derive = "1.0.126"
serde = { version = "1.0.164", features = ["derive"] }
serde_json = "1.0.99"
term = "0.7.0"
num-rational = "0.3.2"
num-rational = "0.4.1"
indexmap = { version = "1.7.0", features = ["serde-1"] }
difference = "2.0.0"
test-generator = "0.3.0"
Expand Down
4 changes: 2 additions & 2 deletions ast/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ weresocool_error = { path = "../error", version = "^1.0.47", default_features=fa
weresocool_filter = { path = "../filter", version = "^1.0.45" }
weresocool_shared = { path = "../shared", version = "^1.0.47" }
scop = { path = "../scop", version = "^1.0.47" }
num-rational = { version = "0.3.2", features = ["serde"] }
num-rational = { version = "0.4.1", features = ["serde"] }
rand = { version="0.7.3", features=["wasm-bindgen"]}
serde = { version = "1.0.119", features = ["derive"] }
serde = { version = "1.0.164", features = ["derive"] }
pretty_assertions = "0.6.1"
indexmap = "1.6.1"
colored = "2.0.0"
Expand Down
8 changes: 4 additions & 4 deletions core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,12 @@ weresocool_vorbis = { path = "../vorbis", version = "^1.0.47", optional=true, de
weresocool_portaudio = { path = "../portaudio", version = "^1.0.47", optional=true }
rand = { version="0.7.3", features=["wasm-bindgen"]}
hound = "3.4.0"
serde = { version = "1.0.119", features = ["derive"] }
serde_json = "1.0.64"
serde_derive = "1.0.126"
serde = { version = "1.0.164", features = ["derive"] }
serde_json = "1.0.99"
serde_derive = "1.0.164"
colored = "2.0.0"
pbr = { version="1.1.1", optional=true }
num-rational = "0.3.2"
num-rational = "0.4.1"
rayon = "1.5.1"
indexmap = { version = "1.7.0", features = ["serde-1"] }
difference = "2.0.0"
Expand Down
6 changes: 2 additions & 4 deletions core/src/ui/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,8 @@ pub fn clear_screen() {
{
eprintln!("Failed to clear the screen: Command 'cls' is not recognized");
}
} else {
if std::process::Command::new("clear").status().is_err() {
eprintln!("Failed to clear the screen: Command 'clear' is not recognized");
}
} else if std::process::Command::new("clear").status().is_err() {
eprintln!("Failed to clear the screen: Command 'clear' is not recognized");
}
}

Expand Down

0 comments on commit 53a4fbd

Please sign in to comment.