Skip to content

Commit

Permalink
Update template and readme (#766)
Browse files Browse the repository at this point in the history
* 4 spaces in template
* update readme
  • Loading branch information
xasopheno authored and WereSoCool Bot committed Dec 4, 2022
1 parent 7c2c7dc commit 490df6d
Show file tree
Hide file tree
Showing 19 changed files with 105 additions and 105 deletions.
32 changes: 16 additions & 16 deletions Cargo.lock

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

36 changes: 18 additions & 18 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "weresocool"
version = "1.0.41"
version = "1.0.43"
edition = "2021"
authors = ["Danny <weresocool@xasopheno.com>"]
description = "***** WereSoCool __!Now In Stereo!__ ****** Make cool sounds. Impress your friends."
Expand All @@ -24,27 +24,27 @@ depends = ["lame", "vorbis-tools"]
provides = ["weresocool"]

[target.'cfg(target_os = "windows")'.dependencies]
weresocool_core = { path="core", version = "^1.0.41", features = ["windows"] }
weresocool_error = { path = "error", version = "^1.0.41", features=["windows"] }
weresocool_core = { path="core", version = "^1.0.43", features = ["windows"] }
weresocool_error = { path = "error", version = "^1.0.43", features=["windows"] }
[target.'cfg(target_os = "linux")'.dependencies]
weresocool_core = { path="core", version = "^1.0.41", features = ["windows"] }
weresocool_error = { path = "error", version = "^1.0.41", features=["windows"] }
weresocool_core = { path="core", version = "^1.0.43", features = ["windows"] }
weresocool_error = { path = "error", version = "^1.0.43", features=["windows"] }
[target.'cfg(target_os = "macos")'.dependencies]
weresocool_core = { path="core", version = "^1.0.41", features = ["app"] }
weresocool_error = { path = "error", version = "^1.0.41", features=["app"] }
weresocool_core = { path="core", version = "^1.0.43", features = ["app"] }
weresocool_error = { path = "error", version = "^1.0.43", features=["app"] }

[dependencies]
weresocool_core = { path="core", version = "^1.0.41", default_features=false }
weresocool_error = { path = "error", version = "^1.0.41", default_features=false }
weresocool_parser = { path = "parser", version = "^1.0.41", default_features=false, optional=true }
weresocool_ast = { path = "ast", version = "^1.0.41", default_features=false, optional=true }
weresocool_instrument = { path = "instrument", version = "^1.0.41", default_features=false, optional=true }
weresocool_portaudio = { path = "portaudio", version = "^1.0.41", default_features=false, optional=true }
scop = { path = "scop", version = "^1.0.41" }
opmap = { path = "opmap", version = "^1.0.41" }
weresocool_shared = { path = "shared", version = "^1.0.41" }
weresocool_analyze = { path = "analyze", version = "^1.0.41" }
weresocool_ring_buffer = { path = "ring_buffer", version = "^1.0.41" }
weresocool_core = { path="core", version = "^1.0.43", default_features=false }
weresocool_error = { path = "error", version = "^1.0.43", default_features=false }
weresocool_parser = { path = "parser", version = "^1.0.43", default_features=false, optional=true }
weresocool_ast = { path = "ast", version = "^1.0.43", default_features=false, optional=true }
weresocool_instrument = { path = "instrument", version = "^1.0.43", default_features=false, optional=true }
weresocool_portaudio = { path = "portaudio", version = "^1.0.43", default_features=false, optional=true }
scop = { path = "scop", version = "^1.0.43" }
opmap = { path = "opmap", version = "^1.0.43" }
weresocool_shared = { path = "shared", version = "^1.0.43" }
weresocool_analyze = { path = "analyze", version = "^1.0.43" }
weresocool_ring_buffer = { path = "ring_buffer", version = "^1.0.43" }
clap = "4.0.27"
thiserror = "1.0.31"
notify = "5.0.0-pre.14"
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,13 @@ WereSoCool can be installed on macos, linux, and windows via cargo. You'll also

#### Necessary Dependancies
Macos:
brew install lame libvorbis
`brew install lame libvorbis`

Arch Linux (ALSA):
sudo pacman -S lame vorbis-tools
`sudo pacman -S lame vorbis-tools`

Ubuntu (ALSA):
sudo apt-get lame vorbis-tools
`sudo apt-get lame vorbis-tools`

### Windows

Expand Down
4 changes: 2 additions & 2 deletions analyze/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "weresocool_analyze"
version = "1.0.41"
version = "1.0.43"
authors = ["Danny Meyer <weresocool@xasopheno.com>"]
edition = "2021"
description = "audio analysis for WereSoCool"
Expand All @@ -10,4 +10,4 @@ resolver="2"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
weresocool_shared = { path = "../shared", version = "^1.0.41" }
weresocool_shared = { path = "../shared", version = "^1.0.43" }
10 changes: 5 additions & 5 deletions ast/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
[package]
name = "weresocool_ast"
version = "1.0.41"
version = "1.0.43"
authors = ["Danny Meyer <weresocool@xasopheno.com>"]
edition = "2021"
description = "AST for WereSoCool"
license = "GPL-3.0"
resolver="2"

[dependencies]
weresocool_ring_buffer = { path = "../ring_buffer", version = "^1.0.41" }
weresocool_error = { path = "../error", version = "^1.0.41", default_features=false, optional=true }
weresocool_shared = { path = "../shared", version = "^1.0.41" }
scop = { path = "../scop", version = "^1.0.41" }
weresocool_ring_buffer = { path = "../ring_buffer", version = "^1.0.43" }
weresocool_error = { path = "../error", version = "^1.0.43", default_features=false, optional=true }
weresocool_shared = { path = "../shared", version = "^1.0.43" }
scop = { path = "../scop", version = "^1.0.43" }
num-rational = { version = "0.3.2", features = ["serde"] }
rand = { version="0.7.3", features=["wasm-bindgen"]}
serde = { version = "1.0.119", features = ["derive"] }
Expand Down
28 changes: 14 additions & 14 deletions core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "weresocool_core"
version = "1.0.41"
version = "1.0.43"
edition = "2021"
authors = ["Danny <weresocool@xasopheno.com>"]
description = "***** WereSoCool __!Now In Stereo!__ ****** Make cool sounds. Impress your friends."
Expand All @@ -19,23 +19,23 @@ exclude = [


[target.'cfg(target_os = "macos")'.dependencies]
weresocool_lame = { path = "../lame", version = "^1.0.41" }
weresocool_lame = { path = "../lame", version = "^1.0.43" }

[target.'cfg(target_os = "linux")'.dependencies]
weresocool_lame = { path = "../lame", version = "^1.0.41" }
weresocool_lame = { path = "../lame", version = "^1.0.43" }

[dependencies]
scop = { path = "../scop", version = "^1.0.41" }
opmap = { path = "../opmap", version = "^1.0.41" }
weresocool_ring_buffer = { path = "../ring_buffer", version = "^1.0.41" }
weresocool_analyze = { path = "../analyze", version = "^1.0.41" }
weresocool_parser = { path = "../parser", version = "^1.0.41", default_features=false, optional=true }
weresocool_ast = { path = "../ast", version = "^1.0.41", default_features=false, optional=true }
weresocool_error = { path = "../error", version = "^1.0.41", default_features=false, optional=true }
weresocool_instrument = { path = "../instrument", version = "^1.0.41", default_features=false, optional=true }
weresocool_shared = { path = "../shared", version = "^1.0.41" }
weresocool_vorbis = { path = "../vorbis", version = "^1.0.41", optional=true, default_features = false }
weresocool_portaudio = { path = "../portaudio", version = "^1.0.41", optional=true }
scop = { path = "../scop", version = "^1.0.43" }
opmap = { path = "../opmap", version = "^1.0.43" }
weresocool_ring_buffer = { path = "../ring_buffer", version = "^1.0.43" }
weresocool_analyze = { path = "../analyze", version = "^1.0.43" }
weresocool_parser = { path = "../parser", version = "^1.0.43", default_features=false, optional=true }
weresocool_ast = { path = "../ast", version = "^1.0.43", default_features=false, optional=true }
weresocool_error = { path = "../error", version = "^1.0.43", default_features=false, optional=true }
weresocool_instrument = { path = "../instrument", version = "^1.0.43", default_features=false, optional=true }
weresocool_shared = { path = "../shared", version = "^1.0.43" }
weresocool_vorbis = { path = "../vorbis", version = "^1.0.43", optional=true, default_features = false }
weresocool_portaudio = { path = "../portaudio", version = "^1.0.43", optional=true }
rand = { version="0.7.3", features=["wasm-bindgen"]}
hound = "3.4.0"
serde = { version = "1.0.119", features = ["derive"] }
Expand Down
10 changes: 5 additions & 5 deletions error/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
[package]
name = "weresocool_error"
version = "1.0.41"
version = "1.0.43"
authors = ["Danny Meyer <weresocool@xasopheno.com>"]
edition = "2021"
description = "Errors for WereSoCool"
license = "GPL-3.0"

[target.'cfg(target_os = "macos")'.dependencies]
weresocool_lame = { path = "../lame", version = "^1.0.41" }
weresocool_lame = { path = "../lame", version = "^1.0.43" }

[target.'cfg(target_os = "linux")'.dependencies]
weresocool_lame = { path = "../lame", version = "^1.0.41" }
weresocool_lame = { path = "../lame", version = "^1.0.43" }

[dependencies]
scop = { path = "../scop", version = "^1.0.41" }
weresocool_portaudio = { path = "../portaudio", version = "^1.0.41", optional=true }
scop = { path = "../scop", version = "^1.0.43" }
weresocool_portaudio = { path = "../portaudio", version = "^1.0.43", optional=true }
hound = "3.4.0"
serde_json = "1.0.64"
serde = { version = "1.0.119", features = ["derive"] }
Expand Down
14 changes: 7 additions & 7 deletions instrument/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "weresocool_instrument"
version = "1.0.41"
version = "1.0.43"
authors = ["Danny Meyer <weresocool@xasopheno.com>"]
edition = "2021"
description = "audio renderer for WereSoCool"
Expand All @@ -9,13 +9,13 @@ license = "GPL-3.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
weresocool_ast = { path = "../ast", version = "^1.0.41", default_features=false, optional=true }
weresocool_error = { path = "../error", version = "^1.0.41", default_features=false, optional=true }
weresocool_parser = { path = "../parser", version = "^1.0.41", default_features=false, optional=true }
weresocool_shared = { path = "../shared", version = "^1.0.41" }
scop = { path = "../scop", version = "^1.0.41" }
weresocool_ast = { path = "../ast", version = "^1.0.43", default_features=false, optional=true }
weresocool_error = { path = "../error", version = "^1.0.43", default_features=false, optional=true }
weresocool_parser = { path = "../parser", version = "^1.0.43", default_features=false, optional=true }
weresocool_shared = { path = "../shared", version = "^1.0.43" }
scop = { path = "../scop", version = "^1.0.43" }
serde = { version = "1.0.119", features = ["derive"] }
reverb = { path = "reverb", version = "^1.0.41" }
reverb = { path = "reverb", version = "^1.0.43" }
rayon = "1.5.1"
num-rational = "0.3.2"
rand = { version="0.7.3", features=["wasm-bindgen"]}
Expand Down
2 changes: 1 addition & 1 deletion instrument/reverb/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "reverb"
version = "1.0.41"
version = "1.0.43"
authors = ["josh, mitchell.nordine@gmail.com"]
description = "A super-fast mono-to-stereo plate reverberator."
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion lame/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "weresocool_lame"
version = "1.0.41"
version = "1.0.43"
authors = ["Danny Meyer <weresocool@xasophenoo.com>"]
edition = "2021"
description = "Lame FFI for WereSoCool"
Expand Down
2 changes: 1 addition & 1 deletion opmap/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "opmap"
version = "1.0.41"
version = "1.0.43"
authors = ["Danny Meyer <weresocool@xasopheno.com>"]
edition = "2021"
description = "OpMap Datastructure for WereSoCool"
Expand Down
8 changes: 4 additions & 4 deletions parser/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "weresocool_parser"
version = "1.0.41"
version = "1.0.43"
authors = ["Danny Meyer <weresocool@xasopheno.com>"]
edition = "2021"
build = "build.rs" # LALRPOP preprocessing
Expand All @@ -13,9 +13,9 @@ version = "0.19.6"
features = ["lexer"]

[dependencies]
weresocool_ast = { path = "../ast", version = "^1.0.41", default_features=false, optional=true }
weresocool_error = { path = "../error", version = "^1.0.41", default_features=false, optional=true }
scop = { path = "../scop", version = "^1.0.41" }
weresocool_ast = { path = "../ast", version = "^1.0.43", default_features=false, optional=true }
weresocool_error = { path = "../error", version = "^1.0.43", default_features=false, optional=true }
scop = { path = "../scop", version = "^1.0.43" }
lalrpop-util = { version="0.19.6", features=["lexer"]}
regex = "1.5.4"
colored = "2.0.0"
Expand Down
Loading

0 comments on commit 490df6d

Please sign in to comment.