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
8 changes: 4 additions & 4 deletions crates/bpe-openai/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bpe-openai"
version = "0.1.1"
version = "0.2.0"
edition = "2021"
description = "Prebuilt fast byte-pair encoders for OpenAI."
repository = "https://github.com/github/rust-gems"
Expand All @@ -13,18 +13,18 @@ crate-type = ["lib", "staticlib"]
bench = false

[dependencies]
bpe = { version = "0.1.0", path = "../bpe" }
bpe = { version = "0.2.0", path = "../bpe" }
either = "1.13"
regex-automata = "0.4"
rmp-serde = "1"

[dev-dependencies]
bpe = { version = "0.1.0", path = "../bpe", features = ["rand"] }
bpe = { version = "0.2.0", path = "../bpe", features = ["rand"] }
tiktoken-rs = "0.6"

[build-dependencies]
base64 = "0.22.1"
bpe = { version = "0.1.0", path = "../bpe", features = ["tiktoken"] }
bpe = { version = "0.2.0", path = "../bpe", features = ["tiktoken"] }
flate2 = "1.0"
rmp-serde = "1"
serde = "1"
2 changes: 1 addition & 1 deletion crates/bpe/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bpe"
version = "0.1.0"
version = "0.2.0"
edition = "2021"
description = "Fast byte-pair encoding implementation."
repository = "https://github.com/github/rust-gems"
Expand Down