Skip to content

Commit

Permalink
MSRV 1.70 (#143)
Browse files Browse the repository at this point in the history
  • Loading branch information
vbkaisetsu authored Sep 4, 2023
1 parent 65abf9b commit eaa0274
Show file tree
Hide file tree
Showing 10 changed files with 3 additions and 28 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
strategy:
matrix:
rust:
- 1.67.0 # MSRV
- 1.70.0 # MSRV
- stable
- nightly
steps:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[![Crates.io](https://img.shields.io/crates/v/vibrato)](https://crates.io/crates/vibrato)
[![Documentation](https://docs.rs/vibrato/badge.svg)](https://docs.rs/vibrato)
![Build Status](https://github.com/daac-tools/vibrato/actions/workflows/rust.yml/badge.svg)
[![Build Status](https://github.com/daac-tools/vibrato/actions/workflows/rust.yml/badge.svg)](https://github.com/daac-tools/vibrato/actions)
[![Slack](https://img.shields.io/badge/join-chat-brightgreen?logo=slack)](https://join.slack.com/t/daac-tools/shared_invite/zt-1pwwqbcz4-KxL95Nam9VinpPlzUpEGyA)

Vibrato is a fast implementation of tokenization (or morphological analysis) based on the Viterbi algorithm.
Expand Down
4 changes: 0 additions & 4 deletions benchmark/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,9 @@
name = "benchmark"
version = "0.1.0"
edition = "2021"
rust-version = "1.67"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[features]
default = []

unchecked = []

[dependencies]
Expand Down
6 changes: 0 additions & 6 deletions compile/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,6 @@
name = "compile"
version = "0.1.0"
edition = "2021"
rust-version = "1.67"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[features]
default = []

[dependencies]
vibrato = { path = "../vibrato" }
Expand Down
1 change: 0 additions & 1 deletion dictgen/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
name = "dictgen"
version = "0.1.0"
edition = "2021"
rust-version = "1.67"

[dependencies]
clap = { version = "4.0", features = ["derive"] } # MIT or Apache-2.0
Expand Down
1 change: 0 additions & 1 deletion evaluate/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
name = "evaluate"
version = "0.1.0"
edition = "2021"
rust-version = "1.67"

default-run = "evaluate"

Expand Down
6 changes: 0 additions & 6 deletions map/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,9 @@
name = "map"
version = "0.1.0"
edition = "2021"
rust-version = "1.67"

default-run = "map"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[features]
default = []

[dependencies]
vibrato = { path = "../vibrato" }
clap = { version = "4.0", features = ["derive"] } # MIT or Apache-2.0
Expand Down
6 changes: 0 additions & 6 deletions tokenize/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,6 @@
name = "tokenize"
version = "0.1.0"
edition = "2021"
rust-version = "1.67"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[features]
default = []

[dependencies]
atty = "0.2" # MIT
Expand Down
1 change: 0 additions & 1 deletion train/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
name = "train"
version = "0.1.0"
edition = "2021"
rust-version = "1.67"

[dependencies]
clap = { version = "4.0", features = ["derive"] } # MIT or Apache-2.0
Expand Down
2 changes: 1 addition & 1 deletion vibrato/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "vibrato"
# NOTE(kampersanda): Developers should check compatibility with MODEL_MAGIC in dictionary.rs.
version = "0.5.1"
edition = "2021"
rust-version = "1.67"
rust-version = "1.70"
authors = [
"Shunsuke Kanda <[email protected]>",
"Koichi Akabe <[email protected]>",
Expand Down

0 comments on commit eaa0274

Please sign in to comment.