aboutsummaryrefslogtreecommitdiffstats
path: root/components/shared/net/filemanager_thread.rs
Commit message (Collapse)AuthorAgeFilesLines
* Stop using `time@0.1` in Servo (#33394)Martin Robinson2024-09-111-1/+2
| | | | | | | | This removes the last few uses of `time@0.1` in Servo. There are still dependencies from `style` and `webrender`, but they will be removed soon as well. The uses of this version of `time` are replaced with `std::time` types and `time@0.3` when negative `Duration` is necessary. Signed-off-by: Martin Robinson <mrobinson@igalia.com>
* Move `*_traits` and other shared types to `shared`Martin Robinson2023-11-031-0/+190
This is the start of the organization of types that are in their own crates in order to break dependency cycles between other crates. The idea here is that putting these packages into their own directory is the first step toward cleaning them up. They have grown organically and it is difficult to explain to new folks where to put new shared types. Many of these crates contain more than traits or don't contain traits at all. Notably, `script_traits` isn't touched because it is vendored from Gecko. Eventually this will move to `third_party`.