chore: Make rand a workspace dependency
This commit is contained in:
parent
586668806e
commit
9e8008f011
@ -17,6 +17,7 @@ criterion = "0.5.0"
|
|||||||
http = "1.1.0"
|
http = "1.1.0"
|
||||||
js_int = "0.2.2"
|
js_int = "0.2.2"
|
||||||
maplit = "1.0.2"
|
maplit = "1.0.2"
|
||||||
|
rand = "0.8.5"
|
||||||
ruma-appservice-api = { version = "0.10.0", path = "crates/ruma-appservice-api" }
|
ruma-appservice-api = { version = "0.10.0", path = "crates/ruma-appservice-api" }
|
||||||
ruma-common = { version = "0.13.0", path = "crates/ruma-common" }
|
ruma-common = { version = "0.13.0", path = "crates/ruma-common" }
|
||||||
ruma-client = { version = "0.13.0", path = "crates/ruma-client" }
|
ruma-client = { version = "0.13.0", path = "crates/ruma-client" }
|
||||||
|
@ -64,7 +64,7 @@ indexmap = { version = "2.0.0", features = ["serde"] }
|
|||||||
js_int = { workspace = true, features = ["serde"] }
|
js_int = { workspace = true, features = ["serde"] }
|
||||||
konst = { version = "0.3.5", default-features = false, features = ["cmp", "iter", "parsing"], optional = true }
|
konst = { version = "0.3.5", default-features = false, features = ["cmp", "iter", "parsing"], optional = true }
|
||||||
percent-encoding = "2.1.0"
|
percent-encoding = "2.1.0"
|
||||||
rand = { version = "0.8.3", optional = true }
|
rand = { workspace = true, optional = true }
|
||||||
regex = { version = "1.5.6", default-features = false, features = ["std", "perf"] }
|
regex = { version = "1.5.6", default-features = false, features = ["std", "perf"] }
|
||||||
ruma-identifiers-validation = { workspace = true }
|
ruma-identifiers-validation = { workspace = true }
|
||||||
ruma-macros = { workspace = true }
|
ruma-macros = { workspace = true }
|
||||||
|
@ -23,7 +23,7 @@ unstable-exhaustive-types = []
|
|||||||
base64 = { workspace = true }
|
base64 = { workspace = true }
|
||||||
ed25519-dalek = { version = "2.0.0", features = ["pkcs8", "rand_core"] }
|
ed25519-dalek = { version = "2.0.0", features = ["pkcs8", "rand_core"] }
|
||||||
pkcs8 = { version = "0.10.0", features = ["alloc"] }
|
pkcs8 = { version = "0.10.0", features = ["alloc"] }
|
||||||
rand = { version = "0.8.5", features = ["getrandom"] }
|
rand = { workspace = true, features = ["getrandom"] }
|
||||||
ruma-common = { workspace = true, features = ["canonical-json"] }
|
ruma-common = { workspace = true, features = ["canonical-json"] }
|
||||||
serde_json = { workspace = true }
|
serde_json = { workspace = true }
|
||||||
sha2 = "0.10.6"
|
sha2 = "0.10.6"
|
||||||
|
@ -32,7 +32,7 @@ criterion = { workspace = true, optional = true }
|
|||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
maplit = { workspace = true }
|
maplit = { workspace = true }
|
||||||
rand = "0.8.3"
|
rand = { workspace = true }
|
||||||
ruma-events = { workspace = true, features = ["unstable-pdu"] }
|
ruma-events = { workspace = true, features = ["unstable-pdu"] }
|
||||||
tracing-subscriber = "0.3.16"
|
tracing-subscriber = "0.3.16"
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user