Skip to content

Commit

Permalink
Update dependencies for publishing
Browse files Browse the repository at this point in the history
With these changes, we have deployed basic versions of the following:

- vidyut-chandas
- vidyut-kosha
- vidyut-lipi
- vidyut-prakriya
  • Loading branch information
akprasad committed Jun 1, 2024
1 parent bca3397 commit c3aa648
Show file tree
Hide file tree
Showing 8 changed files with 322 additions and 183 deletions.
480 changes: 303 additions & 177 deletions Cargo.lock

Large diffs are not rendered by default.

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

[dependencies]
vidyut-chandas = { path = "./vidyut-chandas" }
Expand All @@ -28,7 +29,7 @@ vidyut-kosha = { path = "./vidyut-kosha" }
vidyut-lipi = { path = "./vidyut-lipi" }
vidyut-sandhi = { path = "./vidyut-sandhi" }
log = "0.4.17"
clap = "4.1.4"
clap = "4.3.24"
csv = "1.1.6"
multimap = "0.8.3"
lazy_static = "1.4.0"
Expand Down
1 change: 1 addition & 0 deletions vidyut-chandas/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ 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.0.12", features = ["derive"] }
clap = { version = "4.3.24", features = ["derive"] }
csv = "1.1.6"
env_logger = "0.10.0"
lazy_static = "1.4.0"
Expand Down
12 changes: 11 additions & 1 deletion vidyut-kosha/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,20 @@
[package]
name = "vidyut-kosha"
version = "0.1.0"
authors = ["Arun Prasad <[email protected]>"]
description = "A Sanskrit key-value store"
homepage = "https://github.com/ambuda-org/vidyut"
repository = "https://github.com/ambuda-org/vidyut"
categories = ["text-processing"]
keywords = ["sanskrit"]
license = "MIT"
edition = "2021"
rust-version = "1.68"

[dependencies]
clap = { version = "4.0.12", features = ["derive"] }
clap = { version = "4.3.24", features = ["derive"] }
# needed to avoid complaints from `cargo publish`
clap_derive = { version = "4.3.12" }
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.0.12", features = ["derive"] }
clap = { version = "4.3.24", features = ["derive"] }
wasm-bindgen = "0.2"
serde-wasm-bindgen = "0.4"
console_error_panic_hook = "0.1.7"
Expand Down
3 changes: 2 additions & 1 deletion vidyut-prakriya/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,10 @@ categories = ["text-processing"]
keywords = ["sanskrit"]
license = "MIT"
edition = "2021"
rust-version = "1.68"

[dependencies]
clap = { version = "4.0.12", features = ["derive"] }
clap = { version = "4.3.24", 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.0.12", features = ["derive"] }
clap = { version = "4.3.24", features = ["derive"] }
compact_str = "0.7.1"
csv = "1.1.6"
lazy_static = "1.4.0"
Expand Down

0 comments on commit c3aa648

Please sign in to comment.