Skip to content

Commit

Permalink
Revert various dependency changes
Browse files Browse the repository at this point in the history
This commit reverts some of the changes in `c3aa648`, which caused our
wasm builds to break. The reversions in this commit might cause problems
the next time we run `cargo publish`, but this commit is still
worthwhile so that we can build wasm again.
  • Loading branch information
akprasad committed Jun 2, 2024
1 parent 2be2744 commit 69d2b55
Show file tree
Hide file tree
Showing 8 changed files with 183 additions and 313 deletions.
480 changes: 177 additions & 303 deletions Cargo.lock

Large diffs are not rendered by default.

3 changes: 1 addition & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ categories = ["text-processing"]
keywords = ["sanskrit"]
license = "MIT"
edition = "2021"
rust-version = "1.73"

[dependencies]
vidyut-chandas = { path = "./vidyut-chandas" }
Expand All @@ -29,7 +28,7 @@ vidyut-kosha = { path = "./vidyut-kosha" }
vidyut-lipi = { path = "./vidyut-lipi" }
vidyut-sandhi = { path = "./vidyut-sandhi" }
log = "0.4.17"
clap = "4.3.24"
clap = "4.1.4"
csv = "1.1.6"
multimap = "0.8.3"
lazy_static = "1.4.0"
Expand Down
1 change: 0 additions & 1 deletion vidyut-chandas/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ categories = ["text-processing"]
keywords = ["sanskrit"]
license = "MIT"
edition = "2021"
rust-version = "1.68"

[dependencies]
console_error_panic_hook = "0.1.7"
Expand Down
2 changes: 1 addition & 1 deletion vidyut-cheda/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ edition = "2021"
vidyut-kosha = { path = "../vidyut-kosha" }
vidyut-sandhi = { path = "../vidyut-sandhi" }
vidyut-lipi = { path = "../vidyut-lipi" }
clap = { version = "4.3.24", features = ["derive"] }
clap = { version = "4.0.12", features = ["derive"] }
csv = "1.1.6"
env_logger = "0.10.0"
lazy_static = "1.4.0"
Expand Down
4 changes: 1 addition & 3 deletions vidyut-kosha/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,7 @@ edition = "2021"
rust-version = "1.68"

[dependencies]
clap = { version = "4.3.24", features = ["derive"] }
# needed to avoid complaints from `cargo publish`
clap_derive = { version = "4.3.12" }
clap = { version = "4.0.12", features = ["derive"] }
env_logger = "0.9.1"
log = "0.4.17"
fst = "0.4.7"
Expand Down
2 changes: 1 addition & 1 deletion vidyut-lipi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ edition = "2021"

[dependencies]
rustc-hash = "1.1.0"
clap = { version = "4.3.24", features = ["derive"] }
clap = { version = "4.0.12", features = ["derive"] }
wasm-bindgen = "0.2"
serde-wasm-bindgen = "0.4"
console_error_panic_hook = "0.1.7"
Expand Down
2 changes: 1 addition & 1 deletion vidyut-prakriya/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ edition = "2021"
rust-version = "1.68"

[dependencies]
clap = { version = "4.3.24", features = ["derive"] }
clap = { version = "4.0.12", features = ["derive"] }
compact_str = { version = "0.7.1", features = ["serde"] }
csv = "1.1.6"
enumset = { version = "1.1.3", features = ["serde"] }
Expand Down
2 changes: 1 addition & 1 deletion vidyut-sandhi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
clap = { version = "4.3.24", features = ["derive"] }
clap = { version = "4.0.12", features = ["derive"] }
compact_str = "0.7.1"
csv = "1.1.6"
lazy_static = "1.4.0"
Expand Down

0 comments on commit 69d2b55

Please sign in to comment.