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 9a176f1
Show file tree
Hide file tree
Showing 11 changed files with 106 additions and 56 deletions.
123 changes: 88 additions & 35 deletions Cargo.lock

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

9 changes: 4 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,15 +45,14 @@ 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"
indexmap = { version = "1.7.0", features = ["serde-1"] }
Expand Down
2 changes: 1 addition & 1 deletion ast/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ weresocool_shared = { path = "../shared", version = "^1.0.47" }
scop = { path = "../scop", version = "^1.0.47" }
num-rational = { version = "0.3.2", 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
6 changes: 3 additions & 3 deletions core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ 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"
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
4 changes: 2 additions & 2 deletions error/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ weresocool_lame = { path = "../lame", version = "^1.0.47" }
scop = { path = "../scop", version = "^1.0.47" }
weresocool_portaudio = { path = "../portaudio", version = "^1.0.47", optional=true }
hound = "3.4.0"
serde_json = "1.0.64"
serde = { version = "1.0.119", features = ["derive"] }
serde = { version = "1.0.164", features = ["derive"] }
serde_json = "1.0.99"
csv = "1.1.5"
wasm-bindgen = { version="0.2.86", optional=true, features=["serde-serialize"] }
thiserror = "1.0.24"
Expand Down
2 changes: 1 addition & 1 deletion filter/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ license = "GPL-3.0"
[dependencies]
weresocool_shared = { path = "../shared", version = "^1.0.47" }
num-rational = { version = "0.3.2", features = ["serde"] }
serde = { version = "1.0.119", features = ["derive"] }
serde = { version = "1.0.164", features = ["derive"] }
2 changes: 1 addition & 1 deletion instrument/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ weresocool_filter = { path = "../filter", version = "^1.0.45" }
weresocool_parser = { path = "../parser", version = "^1.0.47", default_features=false, optional=true }
weresocool_shared = { path = "../shared", version = "^1.0.47" }
scop = { path = "../scop", version = "^1.0.47" }
serde = { version = "1.0.119", features = ["derive"] }
serde = { version = "1.0.164", features = ["derive"] }
reverb = { path = "reverb", version = "^1.0.47" }
rayon = "1.5.1"
num-rational = "0.3.2"
Expand Down
2 changes: 1 addition & 1 deletion lame/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ license = "GPL-3.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
serde = { version = "1.0.111", features = ["derive"] }
serde = { version = "1.0.164", features = ["derive"] }
thiserror = "1.0.24"
4 changes: 2 additions & 2 deletions parser/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ license = "GPL-3.0"
resolver="2"

[build-dependencies.lalrpop]
version = "0.19.10"
version = "0.19.12"
features = ["lexer"]

[dependencies]
weresocool_ast = { path = "../ast", version = "^1.0.47", default_features=false, optional=true }
weresocool_error = { path = "../error", version = "^1.0.47", default_features=false, optional=true }
weresocool_shared = { path = "../shared", version = "^1.0.47" }
scop = { path = "../scop", version = "^1.0.47" }
lalrpop-util = { version="0.19.10", features=["lexer"]}
lalrpop-util = { version="0.19.12", features=["lexer"]}
regex = "1.5.4"
colored = "2.0.0"
num-rational = "0.3.2"
Expand Down
2 changes: 1 addition & 1 deletion scop/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ license = "GPL-3.0"
[dependencies]
thiserror = "1.0.25"
uuid = { version = "0.8", features = ["serde", "v4", "stdweb"] }
serde = { version = "1.0.119", features = ["derive"] }
serde = { version = "1.0.164", features = ["derive"] }
indexmap = { version = "1.6.1", features = ["serde-1"] }

0 comments on commit 9a176f1

Please sign in to comment.