Skip to content

Commit

Permalink
bump dep
Browse files Browse the repository at this point in the history
  • Loading branch information
ahaoboy committed Sep 23, 2024
1 parent dd2394e commit 9cc4fcf
Show file tree
Hide file tree
Showing 4 changed files with 110 additions and 82 deletions.
131 changes: 70 additions & 61 deletions Cargo.lock

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

20 changes: 19 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
[workspace]
members = ["ansi2", "ansi2-wasm"]
resolver = "2"
resolver = "2"

[workspace.package]
version = "0.2.10"
edition = "2021"
license = "MIT"
description = "ansi2"
repository = "https://github.com/ahaoboy/ansi2"
homepage = "https://github.com/ahaoboy/ansi2"
authors = ["ahaoboy"]

[workspace.dependencies]
clap = { version = "4.5", features = ["derive"] }
wasm-bindgen = { version = "0.2" }
nom = "7"
html-escape = "0.2"
base64 = "0.22"
wasm-bindgen-test = "0.3"
ansi2 = { path = "./ansi2", features = ["wasm"] }
15 changes: 9 additions & 6 deletions ansi2-wasm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,18 +1,21 @@
[package]
name = "ansi2-wasm"
version = "0.1.1"
authors = ["ahaoboy <[email protected]>"]
edition = "2018"
version = { workspace = true }
edition = { workspace = true }
license = { workspace = true }
description = { workspace = true }
repository = { workspace = true }
authors = { workspace = true }

[lib]
crate-type = ["cdylib", "rlib"]

[dependencies]
wasm-bindgen = "0.2.93"
ansi2 = { path = "../ansi2", features = ["wasm"] }
wasm-bindgen = { workspace = true }
ansi2 = { workspace = true, features = ["wasm"] }

[dev-dependencies]
wasm-bindgen-test = "0.3.43"
wasm-bindgen-test = { workspace = true }

[profile.release]
opt-level = 3
Loading

0 comments on commit 9cc4fcf

Please sign in to comment.