Skip to content

Commit 21dc732

Browse files
committed
chore: 更新版本
1 parent 203bf15 commit 21dc732

File tree

7 files changed

+17
-16
lines changed

7 files changed

+17
-16
lines changed

Cargo.lock

+4-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "cn-font-split"
33
description = "划时代的字体切割工具,CJK与任何字符!支持 otf、ttf、woff2 字体多线程切割,完美地细颗粒度地进行包大小控制。A revolutionary font subetter that supports CJK and any characters! It enables multi-threaded subset of otf, ttf, and woff2 fonts, allowing for precise control over package size."
4-
version = "7.3.0"
4+
version = "7.3.3"
55
edition = "2021"
66
authors = ["KonghaYao<[email protected]>"]
77
homepage = "https://chinese-font.netlify.app/"
@@ -10,9 +10,9 @@ license = "Apache-2.0"
1010
exclude = ["packages", "assets", ".devcontainer", ".github", ".vscode"]
1111

1212
[dependencies]
13-
cn-font-utils = { version = "0.1.0", path = "crates/cn_font_utils" }
13+
cn-font-utils = { version = "0.2.0", path = "crates/cn_font_utils" }
1414
harfbuzz_rs_now = "2.2.6"
15-
lang-unicodes = { version = "0.1.1", path = "crates/lang_unicodes", default-features = false }
15+
lang-unicodes = { version = "0.2.0", path = "crates/lang_unicodes", default-features = false }
1616
log = "0.4.26"
1717
md5 = "0.7.0"
1818
opentype = "0.38.1"

crates/lang_unicodes/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ include = ["data", "src"]
1111

1212
[dependencies]
1313
lazy_static = "1.5.0"
14-
cn-font-utils = { version = "0.1.2", path = "../cn_font_utils" }
14+
cn-font-utils = { version = "0.2.0", path = "../cn_font_utils" }
1515

1616
[lib]
1717
path = "src/lib.rs"
1818

1919
[build-dependencies]
20-
cn-font-utils = { version = "0.1.2", path = "../cn_font_utils" }
20+
cn-font-utils = { version = "0.2.0", path = "../cn_font_utils" }
2121
lazy_static = { version = "1.5.0", optional = true }
2222
opencc-rs = { version = "0.4.7", optional = true }
2323
indexmap = "2.7.1"

packages/grpc/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ edition = "2021"
77
cn-font-proto = { version = "0.1.0", path = "../../crates/proto", default-features = false, features = [
88
"server",
99
] }
10-
cn-font-split = { version = "7.0.0", path = "../..", default-features = false}
11-
cn-font-utils = { version = "0.1.0", path = "../../crates/cn_font_utils" }
10+
cn-font-split = { version = "7.0.0", path = "../..", default-features = false }
11+
cn-font-utils = { version = "0.2.0", path = "../../crates/cn_font_utils" }
1212
prost = "0.13.3"
1313
tokio = { version = "1.19.2", features = ["macros", "rt-multi-thread"] }
1414
tokio-stream = "0.1.16"
@@ -21,4 +21,4 @@ tonic-build = "0.12.3"
2121

2222
[features]
2323
default = ["with_extra"]
24-
with_extra = ["cn-font-split/with_extra", "cn-font-proto/with_extra"]
24+
with_extra = ["cn-font-split/with_extra", "cn-font-proto/with_extra"]

packages/server/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ serde = { version = "1.0", features = ["derive"] }
1010
serde_json = "1.0.136"
1111
tokio = { version = "1.0.136", features = ["full"] }
1212
futures = "0.3.31"
13-
cn-font-proto = { version = "0.1.2", default-features = false }
13+
cn-font-proto = { version = "0.2.0", default-features = false }
1414
reqwest = { version = "0.12.12", features = ['multipart'] }
1515
tower = { version = "0.5.2", features = ["util"] }
1616
tower-http = { version = "0.6.1", features = ["full"] }
17-
cn-font-utils = "0.1.2"
17+
cn-font-utils = "0.2.0"
1818
sha2 = "0.10.8"
1919

2020
[features]

packages/wasm-edge/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ crate-type = ["cdylib"]
99
[dependencies]
1010
cn-font-proto = { version = "0.1.0", path = "../../crates/proto", default-features = false }
1111
cn-font-split = { version = "7.0.0", path = "../..", default-features = false }
12-
cn-font-utils = { version = "0.1.0", path = "../../crates/cn_font_utils" }
12+
cn-font-utils = { version = "0.2.0", path = "../../crates/cn_font_utils" }
1313
env_logger = "0.11.5"
1414
prost = "0.13.4"
1515

1616
[features]
1717
default = ["with_extra"]
18-
with_extra = ["cn-font-split/with_extra", "cn-font-proto/with_extra"]
18+
with_extra = ["cn-font-split/with_extra", "cn-font-proto/with_extra"]

packages/wasmer/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ edition = "2021"
77
clap = { version = "4.5.26", features = ["derive"] }
88
cn-font-proto = { version = "0.1.2", path = "../../crates/proto" }
99
cn-font-split = { version = "7.2.1", path = "../.." }
10-
cn-font-utils = { version = "0.1.2", path = "../../crates/cn_font_utils" }
10+
cn-font-utils = { version = "0.2.0", path = "../../crates/cn_font_utils" }

0 commit comments

Comments
 (0)