aboutsummaryrefslogtreecommitdiffstats
path: root/components/rand
Commit message (Collapse)AuthorAgeFilesLines
* Use workspace definitions for all crates and update to the 2021 edition (#32544)Martin Robinson2024-06-181-5/+5
|
* Fix clippy warnings in `components/rand` (#31549)sandeep2024-03-071-3/+3
| | | | | | | | | | | | | | | | | | | | | | * resolved clippy warnings in components/rand Signed-off-by: Sandeep Pillai <sandeeppillai@Sandeeps-MacBook-Air.local> * replaced new() with default() Signed-off-by: Sandeep Pillai <sandeeppillai@Sandeeps-MacBook-Air.local> * replaced ServoRng::new() with ServoRng::default() Signed-off-by: Sandeep Pillai <sandeeppillai@Sandeeps-MacBook-Air.local> * moved the contents of the new() method into the default() method Signed-off-by: Sandeep Pillai <sandeeppillai@Sandeeps-MacBook-Air.local> --------- Signed-off-by: Sandeep Pillai <sandeeppillai@Sandeeps-MacBook-Air.local> Co-authored-by: Sandeep Pillai <sandeeppillai@Sandeeps-MacBook-Air.local>
* Strict import formatting (grouping and granularity) (#30325)Samson2023-09-111-4/+5
| | | | | * strict imports formatting * Reformat all imports
* remove `extern crate` (#30311)Samson2023-09-081-6/+2
| | | | | | | | | | | * remove extern crate * Update components/script_plugins/lib.rs Co-authored-by: Martin Robinson <mrobinson@igalia.com> --------- Co-authored-by: Martin Robinson <mrobinson@igalia.com>
* Disable WebRender debugger and upgrade webxr / media / rand (#30190)Martin Robinson2023-08-241-2/+2
| | | | | | Now that our dependencies are using a newer version of rand we can upgrade. This change also disables the WebRender debugger feature because it has been removed in later versions of WebRender and allows deduplicated the rand dependency as well as quite a few others.
* Update uuidMartin Robinson2023-06-261-5/+2
| | | | | This is required to use the new version of gleam and update ipc-channels without duplicating the dependency in the future.
* Start the transition to workspace dependenciesMartin Robinson2023-05-171-4/+4
| | | | | | | This will ultimately make it simpler to update crate dependencies and reduce duplicate when specifying requirements. Generally, this change does not touch dependencies that are only used by a single crate. We could consider moving them to workspace dependencies in the future.
* Removed the commented code.michaelgrigoryan252022-12-011-6/+0
|
* Replaced explicit Default implementation for Seed with derive.michaelgrigoryan252022-12-011-5/+6
|
* Update rand to 0.7 (fixes #24448)Anthony Ramine2019-10-232-8/+5
|
* Update rand to 0.6Bastien Orivel2019-08-112-40/+85
| | | | | | | | | | | | I changed the isaac random to always be the 32 bits one because the 64 bits version doesn't work with ReseedingRng as it requires the generator's output to be u32 for some reasons. The other main change is that the reseed method doesn't exist anymore and now rand recreates a new generator when it needs to reseed so I had to add a new method for when we don't want a generator to be reseeded. Closes #23558
* Upgrade headers, headers-core, and hyper_serde.Josh Matthews2019-06-131-1/+1
|
* Upgrade uuid.Josh Matthews2019-06-121-2/+5
|
* Upgrade ws.Josh Matthews2019-06-121-1/+1
|
* Update MPL license to https (part 4)Jan Andre Ikenmeyer2018-11-191-1/+1
|
* Update uuidBastien Orivel2018-11-091-1/+1
|
* `cargo fix --edition-idioms`Simon Sapin2018-11-081-2/+0
|
* Reorder importsPyfisch2018-11-061-2/+2
|
* Switch most crates to the 2018 editionSimon Sapin2018-11-061-0/+1
|
* Bump env_logger to 0.5 and log to 0.4 in every servo crateBastien Orivel2018-03-281-1/+1
|
* Bump ipc-channel and bincodeBastien Orivel2018-03-212-1/+12
| | | | This required bumping uuid too which unfortunately duplicated rand.
* Update lazy_static to 1.0Bastien Orivel2017-12-041-1/+1
| | | | For now it'll be duplicated
* squash: convert less interesting debug! logs to tracesDexter Haslem2017-01-181-4/+4
|
* An in-memory RNG that shares its file descriptor.Alan Jeffrey2017-01-052-0/+173