Skip to content

Commit

Permalink
Merge pull request #29 from pluots/misc-updates
Browse files Browse the repository at this point in the history
Remove uuid_unstable flag since uuidv6+ has been stabilized
  • Loading branch information
tgross35 authored Feb 11, 2024
2 parents dcced95 + b48805a commit 50bf6bb
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release-rust.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
- 'v*'

env:
RUSTFLAGS: "-D warnings --cfg uuid_unstable"
RUSTFLAGS: "-D warnings"
CARGO_REGISTRIES_CRATES_IO_PROTOCOL: sparse

jobs:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/validation-rust.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ name: Rust Validation

env:
RUSTDOCFLAGS: -D warnings
RUSTFLAGS: -D warnings --cfg uuid_unstable -C debuginfo=1
RUSTFLAGS: -D warnings -C debuginfo=1
CARGO_REGISTRIES_CRATES_IO_PROTOCOL: sparse

jobs:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ types as their little endian representation on all platforms. (You only need
to worry about this if you have very obscure platform compatibility
requirements. Strings and blobs are always unambiguous).

### String Operationg
### String Operations

Provide the function `levenshtein`, which calculates the levenshtein edit
distance between two strings. There is also `levenshtein_normalized` that
Expand Down
4 changes: 2 additions & 2 deletions test-integration/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ license = "Apache-2.0 OR GPL-2.0-or-later"
mysql = { version = "24.0.0", default-features = false }

[dev-dependencies]
regex = "1.9.5"
regex = "1.10.3"
lazy_static = "1.4.0"
uuid = { version = "1.4.1", features = ["v1", "v3", "v4", "v5", "fast-rng"] }
uuid = { version = "1.7.0", features = ["v1", "v3", "v4", "v5", "fast-rng"] }
hex-literal = "0.4.1"
hex = "0.4.3"
mysql = "24.0.0"
Expand Down
4 changes: 2 additions & 2 deletions udf-hash/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ crate-type = ["cdylib"]
[dependencies]
blake2 = "0.10.6"
blake3 = { version = "1.5.0", features = ["rayon"] }
data-encoding = "2.4.0"
data-encoding = "2.5.0"
digest = "0.10.7"
md-5 = "0.10.6"
sha1 = "0.10.6"
sha2 = "0.10.8"
sha3 = "0.10.8"
udf = { version = "0.5.4", features = ["mock"] }
xxhash-rust = { version = "0.8.7", features = ["xxh3", "xxh32", "xxh64"] }
xxhash-rust = { version = "0.8.8", features = ["xxh3", "xxh32", "xxh64"] }
2 changes: 1 addition & 1 deletion udf-jsonify/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ crate-type = ["cdylib"]

[dependencies]
udf = { version = "0.5.4", features = ["mock"] }
serde_json = "1.0.106"
serde_json = "1.0.113"
2 changes: 1 addition & 1 deletion udf-uuid/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ crate-type = ["cdylib"]

[dependencies]
udf = { version = "0.5.4", features = ["mock"] }
uuid = { version = "1.4.1", features = ["v1", "v3", "v4", "v5", "v6", "v7", "fast-rng"] }
uuid = { version = "1.7.0", features = ["v1", "v3", "v4", "v5", "v6", "v7", "fast-rng"] }
mac_address = "1.1.5"
rand = "0.8.5"

Expand Down

0 comments on commit 50bf6bb

Please sign in to comment.