Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

change: deps and crate type #31

Merged
merged 3 commits into from
Apr 26, 2024
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
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Changed
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ensure there is a blank line before the "Changed" heading for better readability.

+ 
### Changed

Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation.

Suggested change
### Changed
### Changed

- Upgrade `cached` version to `0.50.0`
Change crate-type to `["cdylib", "rlib"]`
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Add a leading dash for consistency with other list items.

- Change crate-type to `["cdylib", "rlib"]`
+ - Change crate-type to `["cdylib", "rlib"]`

Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation.

Suggested change
Change crate-type to `["cdylib", "rlib"]`
- Change crate-type to `["cdylib", "rlib"]`

## [0.1.0] - 2024-04-23
- BLEU score calculation with `Tokenizer13a` as default tokenizer.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ keywords = ["NLP", "Tokenizer", "BLEU", "DeepLearning"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "bleuscore"
crate-type = ["cdylib"]
crate-type = ["cdylib", "rlib"]

[dependencies]
cached = "0.49.3"
cached = "0.50.0"
regex = "1.10.4"
lazy_static = "1.4.0"
counter = "0.5.7"
Expand Down
Loading