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

Make use of newer Cargo features for specifying dependencies #727

Merged
merged 1 commit into from
Jan 19, 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
41 changes: 12 additions & 29 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ status = "actively-developed"
[features]
default = ["std"]
std = []
macro-diagnostics = ["uuid-macro-internal"]
macro-diagnostics = ["dep:uuid-macro-internal"]

# NOTE: When adding new features, check the `ci.yml` workflow
# and include them where necessary (you can follow along with existing features)
Expand All @@ -66,17 +66,17 @@ v6 = ["atomic"]
v7 = ["atomic", "rng"]
v8 = []

js = ["wasm-bindgen", "getrandom", "getrandom/js"]
js = ["dep:wasm-bindgen", "getrandom?/js"]

rng = ["getrandom"]
fast-rng = ["rng", "rand"]
rng = ["dep:getrandom"]
fast-rng = ["rng", "dep:rand"]

sha1 = ["sha1_smol"]
md5 = ["md-5"]
sha1 = ["dep:sha1_smol"]
md5 = ["dep:md-5"]
atomic = ["dep:atomic"]

borsh = ["dep:borsh", "dep:borsh-derive"]


# Public: Used in trait impls on `Uuid`
[dependencies.bytemuck]
version = "1.14.0"
Expand Down Expand Up @@ -115,65 +115,49 @@ version = "1"
default-features = false

# Private
# Don't depend on this optional feature directly: it may change at any time
# use the `borsh` feature instead
[dependencies.borsh-derive]
package = "borsh-derive"
optional = true
version = "1"
default-features = false

# Private
# Don't depend on this optional feature directly: it may change at any time
# use the `rng` feature instead
# Public
# Usage of `getrandom`'s pluggable randomness for custom targets is documented
# in `uuid`'s library docs
[dependencies.getrandom]
package = "getrandom"
optional = true
version = "0.2"

# Private
# Don't depend on this optional feature directly: it may change at any time
# use the `fast-rng` feature instead
[dependencies.rand]
package = "rand"
optional = true
version = "0.8"

# Private
# Don't depend on this optional feature directly: it may change at any time
# Use the `md5` feature instead
[dependencies.md-5]
package = "md-5"
default-features = false
optional = true
version = "0.10"

# Private
# Don't depend on this optional feature directly: it may change at any time
# Use the `sha1` feature instead
[dependencies.sha1_smol]
package = "sha1_smol"
default-features = false
optional = true
version = "1"

# Public: Re-exported
# Don't depend on this optional feature directly: it may change at any time
# Use the `macro-diagnostics` feature instead
[dependencies.uuid-macro-internal]
package = "uuid-macro-internal"
version = "1.6.1"
path = "macros"
optional = true

# Private
[dependencies.atomic]
package = "atomic"
default-features = false
optional = true
version = "0.5"

# Private
[dependencies.wasm-bindgen]
package = "wasm-bindgen"
version = "0.2"
optional = true

Expand All @@ -190,7 +174,6 @@ version = "1.0"
version = "1.0.56"

[target.'cfg(target = "wasm32-unknown-unknown")'.dev-dependencies.wasm-bindgen]
package = "wasm-bindgen"
version = "0.2"

[target.'cfg(all(target_arch = "wasm32", target_vendor = "unknown", target_os = "unknown"))'.dev-dependencies.wasm-bindgen-test]
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@
//! follow [`getrandom`'s docs] on configuring a source of randomness
//! on currently unsupported targets. Alternatively, you can produce
//! random bytes yourself and then pass them to [`Builder::from_random_bytes`]
//! without enabling the `v4` feature.
//! without enabling the `v4` or `v7` features.
//!
//! # Examples
//!
Expand Down
2 changes: 1 addition & 1 deletion src/md5.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#[cfg(feature = "v3")]
pub(crate) fn hash(ns: &[u8], src: &[u8]) -> [u8; 16] {
use md_5::{Digest, Md5};
use md5::{Digest, Md5};

let mut hasher = Md5::new();

Expand Down