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

Fix regex usage by enabling the unicode-perl feature. #124

Merged
merged 2 commits into from
Nov 17, 2020
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
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# 0.8.4

## Bug Fixes

- #123 Fix regex error when parsing creds due to missing
the `unicode-perl` feature flag on the regex crate.

# 0.8.3

## New Features
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nats"
version = "0.8.3"
version = "0.8.4"
description = "A Rust NATS client"
authors = ["Derek Collison <derek@nats.io>", "Tyler Neely <tyler@nats.io>", "Stjepan Glavina <stjepan@nats.io>"]
edition = "2018"
Expand Down Expand Up @@ -38,7 +38,7 @@ log = "0.4.8"
nkeys = "0.0.11"
nuid = "0.2.1"
once_cell = "1.4.0"
regex = { version = "1.3.9", default-features = false, features = ["std"] }
regex = { version = "1.3.9", default-features = false, features = ["std", "unicode-perl"] }
rustls-native-certs = "0.4.0"

[dev-dependencies]
Expand Down