Refuse versions of rand before 0.8.5

https://github.com/ISibboI/evalexpr/pull/102#discussion_r845129883
This commit is contained in:
lovasoa 2022-04-20 20:55:17 +02:00
parent 7227d02a9c
commit 3358ba3c4a
No known key found for this signature in database
GPG Key ID: AC8DB8E033B44AB8

View File

@ -26,7 +26,7 @@ path = "src/lib.rs"
regex = { version = "1.5.5", optional = true} regex = { version = "1.5.5", optional = true}
serde = { version = "1.0.133", optional = true} serde = { version = "1.0.133", optional = true}
serde_derive = { version = "1.0.133", optional = true} serde_derive = { version = "1.0.133", optional = true}
rand = { version = "0.8", optional = true} rand = { version = "0.8.5", optional = true}
[features] [features]
serde_support = ["serde", "serde_derive"] serde_support = ["serde", "serde_derive"]