Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
203 changes: 129 additions & 74 deletions Cargo.lock

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

15 changes: 3 additions & 12 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ include = [

[dependencies]
der = { version = "0.7.7", features = ["std"] }
log = { workspace = true }
rusqlite = { version = ">= 0.28.0", optional = true }
tracing = { workspace = true }

[dev-dependencies]
tempfile = { workspace = true }
Expand All @@ -29,25 +29,16 @@ tempfile = { workspace = true }
default = []
sqlite = ["dep:rusqlite"]
sqlite-bundled = ["sqlite", "rusqlite/bundled"]
log = ["tracing/log"]

[workspace]
members = ["capi", "fuzzer", "tests/testhelper", "tools"]
resolver = "3"

[workspace.dependencies]
env_logger = "0.11.0"
log = "0.4.0"
tempfile = "3.10.1"

[workspace.dependencies.tracing]
version = "0.1.18"
default-features = false
features = ["std", "release_max_level_info"]

[workspace.dependencies.tracing-subscriber]
version = "0.3.0"
default-features = false
features = ["ansi", "fmt", "std"]

[profile.release]
lto = true
opt-level = 3
Expand Down
1 change: 0 additions & 1 deletion NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ What's New in libchewing (unreleased)
- autolearn: new phrases with break words inside will be learned both with
and without the break word.
- rust: simplified dictionary API.
- rust: logging now depends on tracing and tracing-subscriber.
- rust: the DictionaryMut trait is merged back to the Dictionary trait.
- rust: the Editor::set_editor_options now accepts a closure for setting
options in place.
Expand Down
4 changes: 2 additions & 2 deletions capi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ crate-type = ["rlib", "staticlib"]

[dependencies]
chewing = { version = "0.11.0-alpha.7", path = ".." }
tracing = { workspace = true }
tracing-subscriber = { workspace = true }
env_logger = { workspace = true }
log = { workspace = true }

[dev-dependencies]
tempfile = { workspace = true }
Expand Down
Loading
Loading