From e50e08dc57785941aa95d7088e5f2c3eec6fd63c Mon Sep 17 00:00:00 2001 From: uttarayan21 Date: Tue, 18 Nov 2025 16:45:43 +0530 Subject: [PATCH] feat: Added iced-ui and updated typegen for docs --- Cargo.lock | 66 + Cargo.toml | 8 + api/Cargo.toml | 2 + api/src/jellyfin.rs | 2010 +++++++++++++++++++-- src/main.rs | 6 +- src/target/rust-analyzer/flycheck0/stderr | 10 + src/target/rust-analyzer/flycheck0/stdout | 754 ++++++++ src/ui.rs | 265 --- src/ui/movies.rs | 0 src/ui/player.rs | 0 src/ui/series.rs | 0 typegen/src/main.rs | 76 +- ui-gpui/Cargo.toml | 2 + ui-gpui/src/lib.rs | 266 ++- ui-iced/Cargo.toml | 2 + ui-iced/src/lib.rs | 62 +- 16 files changed, 3003 insertions(+), 526 deletions(-) create mode 100644 src/target/rust-analyzer/flycheck0/stderr create mode 100644 src/target/rust-analyzer/flycheck0/stdout delete mode 100644 src/ui.rs delete mode 100644 src/ui/movies.rs delete mode 100644 src/ui/player.rs delete mode 100644 src/ui/series.rs diff --git a/Cargo.lock b/Cargo.lock index bf9172a..f0e3c57 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -209,6 +209,7 @@ name = "api" version = "0.1.0" dependencies = [ "iref", + "jiff", "reqwest", "serde", "serde_json", @@ -217,6 +218,7 @@ dependencies = [ "tokio", "tokio-test", "toml 0.9.8", + "uuid", ] [[package]] @@ -3777,6 +3779,49 @@ dependencies = [ "tokio", "tracing", "tracing-subscriber", + "ui-gpui", + "ui-iced", +] + +[[package]] +name = "jiff" +version = "0.2.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "49cce2b81f2098e7e3efc35bc2e0a6b7abec9d34128283d7a26fa8f32a6dbb35" +dependencies = [ + "jiff-static", + "jiff-tzdb-platform", + "log", + "portable-atomic", + "portable-atomic-util", + "serde_core", + "windows-sys 0.61.2", +] + +[[package]] +name = "jiff-static" +version = "0.2.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "980af8b43c3ad5d8d349ace167ec8170839f753a42d233ba19e08afe1850fa69" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.110", +] + +[[package]] +name = "jiff-tzdb" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c1283705eb0a21404d2bfd6eef2a7593d240bc42a0bdb39db0ad6fa2ec026524" + +[[package]] +name = "jiff-tzdb-platform" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "875a5a69ac2bab1a891711cf5eccbec1ce0341ea805560dcd90b7a2e925132e8" +dependencies = [ + "jiff-tzdb", ] [[package]] @@ -5301,6 +5346,21 @@ version = "0.2.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5da3b0203fd7ee5720aa0b5e790b591aa5d3f41c3ed2c34a3a393382198af2f7" +[[package]] +name = "portable-atomic" +version = "1.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483" + +[[package]] +name = "portable-atomic-util" +version = "0.2.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d8a2f0d8d040d7848a709caf78912debcc3f33ee4b3cac47d73d1e1069e83507" +dependencies = [ + "portable-atomic", +] + [[package]] name = "postage" version = "0.5.0" @@ -7491,12 +7551,18 @@ dependencies = [ [[package]] name = "ui-gpui" version = "0.1.0" +dependencies = [ + "gpui", + "tap", +] [[package]] name = "ui-iced" version = "0.1.0" dependencies = [ + "gpui_util", "iced", + "uuid", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index 9970139..dc17696 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -21,3 +21,11 @@ thiserror = "2.0" tokio = { version = "1.43.1", features = ["macros", "rt-multi-thread"] } tracing = "0.1" tracing-subscriber = { version = "0.3", features = ["env-filter"] } + +ui-gpui = { version = "0.1.0", path = "ui-gpui", optional = true } +ui-iced = { version = "0.1.0", path = "ui-iced", optional = true } + +[features] +default = ["iced"] +iced = ["dep:ui-iced"] +gpui = ["dep:ui-gpui"] diff --git a/api/Cargo.toml b/api/Cargo.toml index c6a11fb..f2c9e51 100644 --- a/api/Cargo.toml +++ b/api/Cargo.toml @@ -5,6 +5,7 @@ edition = "2024" [dependencies] iref = { version = "3.2.2", features = ["serde"] } +jiff = { version = "0.2.16", features = ["serde"] } reqwest = { version = "0.12.24", features = ["json"] } serde = { version = "1.0.228", features = ["derive"] } serde_json = "1.0.145" @@ -12,6 +13,7 @@ tap = "1.0.1" thiserror = "2.0.17" tokio = { version = "1.48.0", features = ["fs"] } toml = "0.9.8" +uuid = { version = "1.18.1", features = ["serde"] } [dev-dependencies] tokio = { version = "1.48.0", features = ["macros", "rt-multi-thread"] } diff --git a/api/src/jellyfin.rs b/api/src/jellyfin.rs index 1f23aab..01f47e4 100644 --- a/api/src/jellyfin.rs +++ b/api/src/jellyfin.rs @@ -1,88 +1,128 @@ +/// An entity representing a user's access schedule. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct AccessSchedule { + /// Gets the id of this instance. #[serde(rename = "Id")] pub id: i32, + /// Gets the id of the associated user. #[serde(rename = "UserId")] - pub user_id: String, + pub user_id: uuid::Uuid, + /// Gets or sets the day of week. #[serde(rename = "DayOfWeek")] pub day_of_week: DynamicDayOfWeek, + /// Gets or sets the start hour. #[serde(rename = "StartHour")] pub start_hour: f64, + /// Gets or sets the end hour. #[serde(rename = "EndHour")] pub end_hour: f64, } +/// An activity log entry. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct ActivityLogEntry { + /// Gets or sets the identifier. #[serde(rename = "Id")] pub id: i64, + /// Gets or sets the name. #[serde(rename = "Name")] pub name: String, + /// Gets or sets the overview. #[serde(rename = "Overview")] pub overview: Option, + /// Gets or sets the short overview. #[serde(rename = "ShortOverview")] pub short_overview: Option, + /// Gets or sets the type. #[serde(rename = "Type")] pub _type: String, + /// Gets or sets the item identifier. #[serde(rename = "ItemId")] pub item_id: Option, + /// Gets or sets the date. #[serde(rename = "Date")] - pub date: String, + pub date: jiff::Zoned, + /// Gets or sets the user identifier. #[serde(rename = "UserId")] - pub user_id: String, + pub user_id: uuid::Uuid, + /// Gets or sets the user primary image tag. #[serde(rename = "UserPrimaryImageTag")] pub user_primary_image_tag: Option, + /// Gets or sets the log severity. #[serde(rename = "Severity")] pub severity: LogLevel, } +/// Activity log created message. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct ActivityLogEntryMessage { + /// Gets or sets the data. #[serde(rename = "Data")] pub data: Option>, + /// Gets or sets the message id. #[serde(rename = "MessageId")] - pub message_id: String, + pub message_id: uuid::Uuid, + /// The different kinds of messages that are used in the WebSocket api. #[serde(rename = "MessageType")] pub message_type: SessionMessageType, } +/// Query result container. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct ActivityLogEntryQueryResult { + /// Gets or sets the items. #[serde(rename = "Items")] pub items: Vec, + /// Gets or sets the total number of records available. #[serde(rename = "TotalRecordCount")] pub total_record_count: i32, + /// Gets or sets the index of the first record in Items. #[serde(rename = "StartIndex")] pub start_index: i32, } +/** Activity log entry start message. +Data is the timing data encoded as "$initialDelay,$interval" in ms.*/ #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct ActivityLogEntryStartMessage { + /// Gets or sets the data. #[serde(rename = "Data")] pub data: Option, + /// The different kinds of messages that are used in the WebSocket api. #[serde(rename = "MessageType")] pub message_type: SessionMessageType, } +/// Activity log entry stop message. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct ActivityLogEntryStopMessage { + /// The different kinds of messages that are used in the WebSocket api. #[serde(rename = "MessageType")] pub message_type: SessionMessageType, } +/// Add virtual folder dto. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct AddVirtualFolderDto { + /// Gets or sets library options. #[serde(rename = "LibraryOptions")] pub library_options: Option, } #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct AlbumInfo { + /// Gets or sets the name. #[serde(rename = "Name")] pub name: Option, + /// Gets or sets the original title. #[serde(rename = "OriginalTitle")] pub original_title: Option, + /// Gets or sets the path. #[serde(rename = "Path")] pub path: Option, + /// Gets or sets the metadata language. #[serde(rename = "MetadataLanguage")] pub metadata_language: Option, + /// Gets or sets the metadata country code. #[serde(rename = "MetadataCountryCode")] pub metadata_country_code: Option, + /// Gets or sets the provider ids. #[serde(rename = "ProviderIds")] pub provider_ids: Option>>, + /// Gets or sets the year. #[serde(rename = "Year")] pub year: Option, #[serde(rename = "IndexNumber")] @@ -90,11 +130,13 @@ pub struct AlbumInfo { #[serde(rename = "ParentIndexNumber")] pub parent_index_number: Option, #[serde(rename = "PremiereDate")] - pub premiere_date: Option, + pub premiere_date: Option, #[serde(rename = "IsAutomated")] pub is_automated: bool, + /// Gets or sets the album artist. #[serde(rename = "AlbumArtists")] pub album_artists: Vec, + /// Gets or sets the artist provider ids. #[serde(rename = "ArtistProviderIds")] pub artist_provider_ids: std::collections::HashMap>, #[serde(rename = "SongInfos")] @@ -105,35 +147,47 @@ pub struct AlbumInfoRemoteSearchQuery { #[serde(rename = "SearchInfo")] pub search_info: Option, #[serde(rename = "ItemId")] - pub item_id: String, + pub item_id: uuid::Uuid, + /// Gets or sets the provider name to search within if set. #[serde(rename = "SearchProviderName")] pub search_provider_name: Option, + /// Gets or sets a value indicating whether disabled providers should be included. #[serde(rename = "IncludeDisabledProviders")] pub include_disabled_providers: bool, } #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct AllThemeMediaResult { + /// Class ThemeMediaResult. #[serde(rename = "ThemeVideosResult")] pub theme_videos_result: Option, + /// Class ThemeMediaResult. #[serde(rename = "ThemeSongsResult")] pub theme_songs_result: Option, + /// Class ThemeMediaResult. #[serde(rename = "SoundtrackSongsResult")] pub soundtrack_songs_result: Option, } #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct ArtistInfo { + /// Gets or sets the name. #[serde(rename = "Name")] pub name: Option, + /// Gets or sets the original title. #[serde(rename = "OriginalTitle")] pub original_title: Option, + /// Gets or sets the path. #[serde(rename = "Path")] pub path: Option, + /// Gets or sets the metadata language. #[serde(rename = "MetadataLanguage")] pub metadata_language: Option, + /// Gets or sets the metadata country code. #[serde(rename = "MetadataCountryCode")] pub metadata_country_code: Option, + /// Gets or sets the provider ids. #[serde(rename = "ProviderIds")] pub provider_ids: Option>>, + /// Gets or sets the year. #[serde(rename = "Year")] pub year: Option, #[serde(rename = "IndexNumber")] @@ -141,7 +195,7 @@ pub struct ArtistInfo { #[serde(rename = "ParentIndexNumber")] pub parent_index_number: Option, #[serde(rename = "PremiereDate")] - pub premiere_date: Option, + pub premiere_date: Option, #[serde(rename = "IsAutomated")] pub is_automated: bool, #[serde(rename = "SongInfos")] @@ -152,86 +206,119 @@ pub struct ArtistInfoRemoteSearchQuery { #[serde(rename = "SearchInfo")] pub search_info: Option, #[serde(rename = "ItemId")] - pub item_id: String, + pub item_id: uuid::Uuid, + /// Gets or sets the provider name to search within if set. #[serde(rename = "SearchProviderName")] pub search_provider_name: Option, + /// Gets or sets a value indicating whether disabled providers should be included. #[serde(rename = "IncludeDisabledProviders")] pub include_disabled_providers: bool, } +/// The authenticate user by name request body. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct AuthenticateUserByName { + /// Gets or sets the username. #[serde(rename = "Username")] pub username: Option, + /// Gets or sets the plain text password. #[serde(rename = "Pw")] pub pw: Option, } #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct AuthenticationInfo { + /// Gets or sets the identifier. #[serde(rename = "Id")] pub id: i64, + /// Gets or sets the access token. #[serde(rename = "AccessToken")] pub access_token: Option, + /// Gets or sets the device identifier. #[serde(rename = "DeviceId")] pub device_id: Option, + /// Gets or sets the name of the application. #[serde(rename = "AppName")] pub app_name: Option, + /// Gets or sets the application version. #[serde(rename = "AppVersion")] pub app_version: Option, + /// Gets or sets the name of the device. #[serde(rename = "DeviceName")] pub device_name: Option, + /// Gets or sets the user identifier. #[serde(rename = "UserId")] - pub user_id: String, + pub user_id: uuid::Uuid, + /// Gets or sets a value indicating whether this instance is active. #[serde(rename = "IsActive")] pub is_active: bool, + /// Gets or sets the date created. #[serde(rename = "DateCreated")] - pub date_created: String, + pub date_created: jiff::Zoned, + /// Gets or sets the date revoked. #[serde(rename = "DateRevoked")] - pub date_revoked: Option, + pub date_revoked: Option, #[serde(rename = "DateLastActivity")] - pub date_last_activity: String, + pub date_last_activity: jiff::Zoned, #[serde(rename = "UserName")] pub user_name: Option, } +/// Query result container. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct AuthenticationInfoQueryResult { + /// Gets or sets the items. #[serde(rename = "Items")] pub items: Vec, + /// Gets or sets the total number of records available. #[serde(rename = "TotalRecordCount")] pub total_record_count: i32, + /// Gets or sets the index of the first record in Items. #[serde(rename = "StartIndex")] pub start_index: i32, } +/// A class representing an authentication result. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct AuthenticationResult { + /// Class UserDto. #[serde(rename = "User")] pub user: Option, + /// Session info DTO. #[serde(rename = "SessionInfo")] pub session_info: Option, + /// Gets or sets the access token. #[serde(rename = "AccessToken")] pub access_token: Option, + /// Gets or sets the server id. #[serde(rename = "ServerId")] pub server_id: Option, } +/** This is strictly used as a data transfer object from the api layer. +This holds information about a BaseItem in a format that is convenient for the client.*/ #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct BaseItemDto { + /// Gets or sets the name. #[serde(rename = "Name")] pub name: Option, #[serde(rename = "OriginalTitle")] pub original_title: Option, + /// Gets or sets the server identifier. #[serde(rename = "ServerId")] pub server_id: Option, + /// Gets or sets the id. #[serde(rename = "Id")] - pub id: String, + pub id: uuid::Uuid, + /// Gets or sets the etag. #[serde(rename = "Etag")] pub etag: Option, + /// Gets or sets the type of the source. #[serde(rename = "SourceType")] pub source_type: Option, + /// Gets or sets the playlist item identifier. #[serde(rename = "PlaylistItemId")] pub playlist_item_id: Option, + /// Gets or sets the date created. #[serde(rename = "DateCreated")] - pub date_created: Option, + pub date_created: Option, #[serde(rename = "DateLastMediaAdded")] - pub date_last_media_added: Option, + pub date_last_media_added: Option, #[serde(rename = "ExtraType")] pub extra_type: Option, #[serde(rename = "AirsBeforeSeasonNumber")] @@ -254,174 +341,253 @@ pub struct BaseItemDto { pub preferred_metadata_country_code: Option, #[serde(rename = "Container")] pub container: Option, + /// Gets or sets the name of the sort. #[serde(rename = "SortName")] pub sort_name: Option, #[serde(rename = "ForcedSortName")] pub forced_sort_name: Option, + /// Gets or sets the video3 D format. #[serde(rename = "Video3DFormat")] pub video3_d_format: Option, + /// Gets or sets the premiere date. #[serde(rename = "PremiereDate")] - pub premiere_date: Option, + pub premiere_date: Option, + /// Gets or sets the external urls. #[serde(rename = "ExternalUrls")] pub external_urls: Option>, + /// Gets or sets the media versions. #[serde(rename = "MediaSources")] pub media_sources: Option>, + /// Gets or sets the critic rating. #[serde(rename = "CriticRating")] - pub critic_rating: Option, + pub critic_rating: Option, #[serde(rename = "ProductionLocations")] pub production_locations: Option>, + /// Gets or sets the path. #[serde(rename = "Path")] pub path: Option, #[serde(rename = "EnableMediaSourceDisplay")] pub enable_media_source_display: Option, + /// Gets or sets the official rating. #[serde(rename = "OfficialRating")] pub official_rating: Option, + /// Gets or sets the custom rating. #[serde(rename = "CustomRating")] pub custom_rating: Option, + /// Gets or sets the channel identifier. #[serde(rename = "ChannelId")] - pub channel_id: Option, + pub channel_id: Option, #[serde(rename = "ChannelName")] pub channel_name: Option, + /// Gets or sets the overview. #[serde(rename = "Overview")] pub overview: Option, + /// Gets or sets the taglines. #[serde(rename = "Taglines")] pub taglines: Option>, + /// Gets or sets the genres. #[serde(rename = "Genres")] pub genres: Option>, + /// Gets or sets the community rating. #[serde(rename = "CommunityRating")] - pub community_rating: Option, + pub community_rating: Option, + /// Gets or sets the cumulative run time ticks. #[serde(rename = "CumulativeRunTimeTicks")] pub cumulative_run_time_ticks: Option, + /// Gets or sets the run time ticks. #[serde(rename = "RunTimeTicks")] pub run_time_ticks: Option, + /// Gets or sets the play access. #[serde(rename = "PlayAccess")] pub play_access: Option, + /// Gets or sets the aspect ratio. #[serde(rename = "AspectRatio")] pub aspect_ratio: Option, + /// Gets or sets the production year. #[serde(rename = "ProductionYear")] pub production_year: Option, + /// Gets or sets a value indicating whether this instance is place holder. #[serde(rename = "IsPlaceHolder")] pub is_place_holder: Option, + /// Gets or sets the number. #[serde(rename = "Number")] pub number: Option, #[serde(rename = "ChannelNumber")] pub channel_number: Option, + /// Gets or sets the index number. #[serde(rename = "IndexNumber")] pub index_number: Option, + /// Gets or sets the index number end. #[serde(rename = "IndexNumberEnd")] pub index_number_end: Option, + /// Gets or sets the parent index number. #[serde(rename = "ParentIndexNumber")] pub parent_index_number: Option, + /// Gets or sets the trailer urls. #[serde(rename = "RemoteTrailers")] pub remote_trailers: Option>, + /// Gets or sets the provider ids. #[serde(rename = "ProviderIds")] pub provider_ids: Option>>, + /// Gets or sets a value indicating whether this instance is HD. #[serde(rename = "IsHD")] pub is_hd: Option, + /// Gets or sets a value indicating whether this instance is folder. #[serde(rename = "IsFolder")] pub is_folder: Option, + /// Gets or sets the parent id. #[serde(rename = "ParentId")] - pub parent_id: Option, + pub parent_id: Option, + /// Gets or sets the type. #[serde(rename = "Type")] pub _type: BaseItemKind, + /// Gets or sets the people. #[serde(rename = "People")] pub people: Option>, + /// Gets or sets the studios. #[serde(rename = "Studios")] pub studios: Option>, #[serde(rename = "GenreItems")] pub genre_items: Option>, + /// Gets or sets whether the item has a logo, this will hold the Id of the Parent that has one. #[serde(rename = "ParentLogoItemId")] - pub parent_logo_item_id: Option, + pub parent_logo_item_id: Option, + /// Gets or sets whether the item has any backdrops, this will hold the Id of the Parent that has one. #[serde(rename = "ParentBackdropItemId")] - pub parent_backdrop_item_id: Option, + pub parent_backdrop_item_id: Option, + /// Gets or sets the parent backdrop image tags. #[serde(rename = "ParentBackdropImageTags")] pub parent_backdrop_image_tags: Option>, + /// Gets or sets the local trailer count. #[serde(rename = "LocalTrailerCount")] pub local_trailer_count: Option, + /// Gets or sets the user data for this item based on the user it's being requested for. #[serde(rename = "UserData")] pub user_data: Option, + /// Gets or sets the recursive item count. #[serde(rename = "RecursiveItemCount")] pub recursive_item_count: Option, + /// Gets or sets the child count. #[serde(rename = "ChildCount")] pub child_count: Option, + /// Gets or sets the name of the series. #[serde(rename = "SeriesName")] pub series_name: Option, + /// Gets or sets the series id. #[serde(rename = "SeriesId")] - pub series_id: Option, + pub series_id: Option, + /// Gets or sets the season identifier. #[serde(rename = "SeasonId")] - pub season_id: Option, + pub season_id: Option, + /// Gets or sets the special feature count. #[serde(rename = "SpecialFeatureCount")] pub special_feature_count: Option, + /// Gets or sets the display preferences id. #[serde(rename = "DisplayPreferencesId")] pub display_preferences_id: Option, + /// Gets or sets the status. #[serde(rename = "Status")] pub status: Option, + /// Gets or sets the air time. #[serde(rename = "AirTime")] pub air_time: Option, + /// Gets or sets the air days. #[serde(rename = "AirDays")] pub air_days: Option>, + /// Gets or sets the tags. #[serde(rename = "Tags")] pub tags: Option>, + /// Gets or sets the primary image aspect ratio, after image enhancements. #[serde(rename = "PrimaryImageAspectRatio")] pub primary_image_aspect_ratio: Option, + /// Gets or sets the artists. #[serde(rename = "Artists")] pub artists: Option>, + /// Gets or sets the artist items. #[serde(rename = "ArtistItems")] pub artist_items: Option>, + /// Gets or sets the album. #[serde(rename = "Album")] pub album: Option, + /// Gets or sets the type of the collection. #[serde(rename = "CollectionType")] pub collection_type: Option, + /// Gets or sets the display order. #[serde(rename = "DisplayOrder")] pub display_order: Option, + /// Gets or sets the album id. #[serde(rename = "AlbumId")] - pub album_id: Option, + pub album_id: Option, + /// Gets or sets the album image tag. #[serde(rename = "AlbumPrimaryImageTag")] pub album_primary_image_tag: Option, + /// Gets or sets the series primary image tag. #[serde(rename = "SeriesPrimaryImageTag")] pub series_primary_image_tag: Option, + /// Gets or sets the album artist. #[serde(rename = "AlbumArtist")] pub album_artist: Option, + /// Gets or sets the album artists. #[serde(rename = "AlbumArtists")] pub album_artists: Option>, + /// Gets or sets the name of the season. #[serde(rename = "SeasonName")] pub season_name: Option, + /// Gets or sets the media streams. #[serde(rename = "MediaStreams")] pub media_streams: Option>, + /// Gets or sets the type of the video. #[serde(rename = "VideoType")] pub video_type: Option, + /// Gets or sets the part count. #[serde(rename = "PartCount")] pub part_count: Option, #[serde(rename = "MediaSourceCount")] pub media_source_count: Option, + /// Gets or sets the image tags. #[serde(rename = "ImageTags")] pub image_tags: Option>, + /// Gets or sets the backdrop image tags. #[serde(rename = "BackdropImageTags")] pub backdrop_image_tags: Option>, + /// Gets or sets the screenshot image tags. #[serde(rename = "ScreenshotImageTags")] pub screenshot_image_tags: Option>, + /// Gets or sets the parent logo image tag. #[serde(rename = "ParentLogoImageTag")] pub parent_logo_image_tag: Option, + /// Gets or sets whether the item has fan art, this will hold the Id of the Parent that has one. #[serde(rename = "ParentArtItemId")] - pub parent_art_item_id: Option, + pub parent_art_item_id: Option, + /// Gets or sets the parent art image tag. #[serde(rename = "ParentArtImageTag")] pub parent_art_image_tag: Option, + /// Gets or sets the series thumb image tag. #[serde(rename = "SeriesThumbImageTag")] pub series_thumb_image_tag: Option, + /** Gets or sets the blurhashes for the image tags. +Maps image type to dictionary mapping image tag to blurhash value.*/ #[serde(rename = "ImageBlurHashes")] pub image_blur_hashes: Option>, + /// Gets or sets the series studio. #[serde(rename = "SeriesStudio")] pub series_studio: Option, + /// Gets or sets the parent thumb item id. #[serde(rename = "ParentThumbItemId")] - pub parent_thumb_item_id: Option, + pub parent_thumb_item_id: Option, + /// Gets or sets the parent thumb image tag. #[serde(rename = "ParentThumbImageTag")] pub parent_thumb_image_tag: Option, + /// Gets or sets the parent primary image item identifier. #[serde(rename = "ParentPrimaryImageItemId")] pub parent_primary_image_item_id: Option, + /// Gets or sets the parent primary image tag. #[serde(rename = "ParentPrimaryImageTag")] pub parent_primary_image_tag: Option, + /// Gets or sets the chapters. #[serde(rename = "Chapters")] pub chapters: Option>, + /// Gets or sets the trickplay manifest. #[serde(rename = "Trickplay")] pub trickplay: Option< std::collections::HashMap< @@ -429,34 +595,47 @@ pub struct BaseItemDto { std::collections::HashMap, >, >, + /// Gets or sets the type of the location. #[serde(rename = "LocationType")] pub location_type: Option, + /// Gets or sets the type of the iso. #[serde(rename = "IsoType")] pub iso_type: Option, + /// Gets or sets the type of the media. #[serde(rename = "MediaType")] pub media_type: MediaType, + /// Gets or sets the end date. #[serde(rename = "EndDate")] - pub end_date: Option, + pub end_date: Option, + /// Gets or sets the locked fields. #[serde(rename = "LockedFields")] pub locked_fields: Option>, + /// Gets or sets the trailer count. #[serde(rename = "TrailerCount")] pub trailer_count: Option, + /// Gets or sets the movie count. #[serde(rename = "MovieCount")] pub movie_count: Option, + /// Gets or sets the series count. #[serde(rename = "SeriesCount")] pub series_count: Option, #[serde(rename = "ProgramCount")] pub program_count: Option, + /// Gets or sets the episode count. #[serde(rename = "EpisodeCount")] pub episode_count: Option, + /// Gets or sets the song count. #[serde(rename = "SongCount")] pub song_count: Option, + /// Gets or sets the album count. #[serde(rename = "AlbumCount")] pub album_count: Option, #[serde(rename = "ArtistCount")] pub artist_count: Option, + /// Gets or sets the music video count. #[serde(rename = "MusicVideoCount")] pub music_video_count: Option, + /// Gets or sets a value indicating whether [enable internet providers]. #[serde(rename = "LockData")] pub lock_data: Option, #[serde(rename = "Width")] @@ -487,83 +666,120 @@ pub struct BaseItemDto { pub altitude: Option, #[serde(rename = "IsoSpeedRating")] pub iso_speed_rating: Option, + /// Gets or sets the series timer identifier. #[serde(rename = "SeriesTimerId")] pub series_timer_id: Option, + /// Gets or sets the program identifier. #[serde(rename = "ProgramId")] pub program_id: Option, + /// Gets or sets the channel primary image tag. #[serde(rename = "ChannelPrimaryImageTag")] pub channel_primary_image_tag: Option, + /// Gets or sets the start date of the recording, in UTC. #[serde(rename = "StartDate")] - pub start_date: Option, + pub start_date: Option, + /// Gets or sets the completion percentage. #[serde(rename = "CompletionPercentage")] pub completion_percentage: Option, + /// Gets or sets a value indicating whether this instance is repeat. #[serde(rename = "IsRepeat")] pub is_repeat: Option, + /// Gets or sets the episode title. #[serde(rename = "EpisodeTitle")] pub episode_title: Option, + /// Gets or sets the type of the channel. #[serde(rename = "ChannelType")] pub channel_type: Option, + /// Gets or sets the audio. #[serde(rename = "Audio")] pub audio: Option, + /// Gets or sets a value indicating whether this instance is movie. #[serde(rename = "IsMovie")] pub is_movie: Option, + /// Gets or sets a value indicating whether this instance is sports. #[serde(rename = "IsSports")] pub is_sports: Option, + /// Gets or sets a value indicating whether this instance is series. #[serde(rename = "IsSeries")] pub is_series: Option, + /// Gets or sets a value indicating whether this instance is live. #[serde(rename = "IsLive")] pub is_live: Option, + /// Gets or sets a value indicating whether this instance is news. #[serde(rename = "IsNews")] pub is_news: Option, + /// Gets or sets a value indicating whether this instance is kids. #[serde(rename = "IsKids")] pub is_kids: Option, + /// Gets or sets a value indicating whether this instance is premiere. #[serde(rename = "IsPremiere")] pub is_premiere: Option, + /// Gets or sets the timer identifier. #[serde(rename = "TimerId")] pub timer_id: Option, + /// Gets or sets the gain required for audio normalization. #[serde(rename = "NormalizationGain")] - pub normalization_gain: Option, + pub normalization_gain: Option, + /// Gets or sets the current program. #[serde(rename = "CurrentProgram")] pub current_program: Option>, } +/// Query result container. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct BaseItemDtoQueryResult { + /// Gets or sets the items. #[serde(rename = "Items")] pub items: Vec, + /// Gets or sets the total number of records available. #[serde(rename = "TotalRecordCount")] pub total_record_count: i32, + /// Gets or sets the index of the first record in Items. #[serde(rename = "StartIndex")] pub start_index: i32, } +/// This is used by the api to get information about a Person within a BaseItem. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct BaseItemPerson { + /// Gets or sets the name. #[serde(rename = "Name")] pub name: Option, + /// Gets or sets the identifier. #[serde(rename = "Id")] - pub id: String, + pub id: uuid::Uuid, + /// Gets or sets the role. #[serde(rename = "Role")] pub role: Option, + /// Gets or sets the type. #[serde(rename = "Type")] pub _type: PersonKind, + /// Gets or sets the primary image tag. #[serde(rename = "PrimaryImageTag")] pub primary_image_tag: Option, + /// Gets or sets the primary image blurhash. #[serde(rename = "ImageBlurHashes")] pub image_blur_hashes: Option>, } #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct BookInfo { + /// Gets or sets the name. #[serde(rename = "Name")] pub name: Option, + /// Gets or sets the original title. #[serde(rename = "OriginalTitle")] pub original_title: Option, + /// Gets or sets the path. #[serde(rename = "Path")] pub path: Option, + /// Gets or sets the metadata language. #[serde(rename = "MetadataLanguage")] pub metadata_language: Option, + /// Gets or sets the metadata country code. #[serde(rename = "MetadataCountryCode")] pub metadata_country_code: Option, + /// Gets or sets the provider ids. #[serde(rename = "ProviderIds")] pub provider_ids: Option>>, + /// Gets or sets the year. #[serde(rename = "Year")] pub year: Option, #[serde(rename = "IndexNumber")] @@ -571,7 +787,7 @@ pub struct BookInfo { #[serde(rename = "ParentIndexNumber")] pub parent_index_number: Option, #[serde(rename = "PremiereDate")] - pub premiere_date: Option, + pub premiere_date: Option, #[serde(rename = "IsAutomated")] pub is_automated: bool, #[serde(rename = "SeriesName")] @@ -582,26 +798,35 @@ pub struct BookInfoRemoteSearchQuery { #[serde(rename = "SearchInfo")] pub search_info: Option, #[serde(rename = "ItemId")] - pub item_id: String, + pub item_id: uuid::Uuid, + /// Gets or sets the provider name to search within if set. #[serde(rename = "SearchProviderName")] pub search_provider_name: Option, + /// Gets or sets a value indicating whether disabled providers should be included. #[serde(rename = "IncludeDisabledProviders")] pub include_disabled_providers: bool, } #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct BoxSetInfo { + /// Gets or sets the name. #[serde(rename = "Name")] pub name: Option, + /// Gets or sets the original title. #[serde(rename = "OriginalTitle")] pub original_title: Option, + /// Gets or sets the path. #[serde(rename = "Path")] pub path: Option, + /// Gets or sets the metadata language. #[serde(rename = "MetadataLanguage")] pub metadata_language: Option, + /// Gets or sets the metadata country code. #[serde(rename = "MetadataCountryCode")] pub metadata_country_code: Option, + /// Gets or sets the provider ids. #[serde(rename = "ProviderIds")] pub provider_ids: Option>>, + /// Gets or sets the year. #[serde(rename = "Year")] pub year: Option, #[serde(rename = "IndexNumber")] @@ -609,7 +834,7 @@ pub struct BoxSetInfo { #[serde(rename = "ParentIndexNumber")] pub parent_index_number: Option, #[serde(rename = "PremiereDate")] - pub premiere_date: Option, + pub premiere_date: Option, #[serde(rename = "IsAutomated")] pub is_automated: bool, } @@ -618,136 +843,188 @@ pub struct BoxSetInfoRemoteSearchQuery { #[serde(rename = "SearchInfo")] pub search_info: Option, #[serde(rename = "ItemId")] - pub item_id: String, + pub item_id: uuid::Uuid, + /// Gets or sets the provider name to search within if set. #[serde(rename = "SearchProviderName")] pub search_provider_name: Option, + /// Gets or sets a value indicating whether disabled providers should be included. #[serde(rename = "IncludeDisabledProviders")] pub include_disabled_providers: bool, } +/// The branding options. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct BrandingOptions { + /// Gets or sets the login disclaimer. #[serde(rename = "LoginDisclaimer")] pub login_disclaimer: Option, + /// Gets or sets the custom CSS. #[serde(rename = "CustomCss")] pub custom_css: Option, + /// Gets or sets a value indicating whether to enable the splashscreen. #[serde(rename = "SplashscreenEnabled")] pub splashscreen_enabled: bool, } +/// Class BufferRequestDto. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct BufferRequestDto { + /// Gets or sets when the request has been made by the client. #[serde(rename = "When")] - pub when: String, + pub when: jiff::Zoned, + /// Gets or sets the position ticks. #[serde(rename = "PositionTicks")] pub position_ticks: i64, + /// Gets or sets a value indicating whether the client playback is unpaused. #[serde(rename = "IsPlaying")] pub is_playing: bool, + /// Gets or sets the playlist item identifier of the playing item. #[serde(rename = "PlaylistItemId")] - pub playlist_item_id: String, + pub playlist_item_id: uuid::Uuid, } +/// The cast receiver application model. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct CastReceiverApplication { + /// Gets or sets the cast receiver application id. #[serde(rename = "Id")] pub id: String, + /// Gets or sets the cast receiver application name. #[serde(rename = "Name")] pub name: String, } #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct ChannelFeatures { + /// Gets or sets the name. #[serde(rename = "Name")] pub name: String, + /// Gets or sets the identifier. #[serde(rename = "Id")] - pub id: String, + pub id: uuid::Uuid, + /// Gets or sets a value indicating whether this instance can search. #[serde(rename = "CanSearch")] pub can_search: bool, + /// Gets or sets the media types. #[serde(rename = "MediaTypes")] pub media_types: Vec, + /// Gets or sets the content types. #[serde(rename = "ContentTypes")] pub content_types: Vec, + /// Gets or sets the maximum number of records the channel allows retrieving at a time. #[serde(rename = "MaxPageSize")] pub max_page_size: Option, + /// Gets or sets the automatic refresh levels. #[serde(rename = "AutoRefreshLevels")] pub auto_refresh_levels: Option, + /// Gets or sets the default sort orders. #[serde(rename = "DefaultSortFields")] pub default_sort_fields: Vec, + /// Gets or sets a value indicating whether a sort ascending/descending toggle is supported. #[serde(rename = "SupportsSortOrderToggle")] pub supports_sort_order_toggle: bool, + /// Gets or sets a value indicating whether [supports latest media]. #[serde(rename = "SupportsLatestMedia")] pub supports_latest_media: bool, + /// Gets or sets a value indicating whether this instance can filter. #[serde(rename = "CanFilter")] pub can_filter: bool, + /// Gets or sets a value indicating whether [supports content downloading]. #[serde(rename = "SupportsContentDownloading")] pub supports_content_downloading: bool, } +/// Channel mapping options dto. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct ChannelMappingOptionsDto { + /// Gets or sets list of tuner channels. #[serde(rename = "TunerChannels")] pub tuner_channels: Vec, + /// Gets or sets list of provider channels. #[serde(rename = "ProviderChannels")] pub provider_channels: Vec, + /// Gets or sets list of mappings. #[serde(rename = "Mappings")] pub mappings: Vec, + /// Gets or sets provider name. #[serde(rename = "ProviderName")] pub provider_name: Option, } +/// Class ChapterInfo. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct ChapterInfo { + /// Gets or sets the start position ticks. #[serde(rename = "StartPositionTicks")] pub start_position_ticks: i64, + /// Gets or sets the name. #[serde(rename = "Name")] pub name: Option, + /// Gets or sets the image path. #[serde(rename = "ImagePath")] pub image_path: Option, #[serde(rename = "ImageDateModified")] - pub image_date_modified: String, + pub image_date_modified: jiff::Zoned, #[serde(rename = "ImageTag")] pub image_tag: Option, } #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct CheckpointId { #[serde(rename = "Id")] - pub id: String, + pub id: uuid::Uuid, } +/// Client capabilities dto. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct ClientCapabilitiesDto { + /// Gets or sets the list of playable media types. #[serde(rename = "PlayableMediaTypes")] pub playable_media_types: Vec, + /// Gets or sets the list of supported commands. #[serde(rename = "SupportedCommands")] pub supported_commands: Vec, + /// Gets or sets a value indicating whether session supports media control. #[serde(rename = "SupportsMediaControl")] pub supports_media_control: bool, + /// Gets or sets a value indicating whether session supports a persistent identifier. #[serde(rename = "SupportsPersistentIdentifier")] pub supports_persistent_identifier: bool, + /// Gets or sets the device profile. #[serde(rename = "DeviceProfile")] pub device_profile: Option, + /// Gets or sets the app store url. #[serde(rename = "AppStoreUrl")] pub app_store_url: Option, + /// Gets or sets the icon url. #[serde(rename = "IconUrl")] pub icon_url: Option, } +/// Client log document response dto. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct ClientLogDocumentResponseDto { + /// Gets the resulting filename. #[serde(rename = "FileName")] pub file_name: String, } +/// Defines the MediaBrowser.Model.Dlna.CodecProfile. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct CodecProfile { + /// Gets or sets the MediaBrowser.Model.Dlna.CodecType which this container must meet. #[serde(rename = "Type")] pub _type: CodecType, + /// Gets or sets the list of MediaBrowser.Model.Dlna.ProfileCondition which this profile must meet. #[serde(rename = "Conditions")] pub conditions: Vec, + /// Gets or sets the list of MediaBrowser.Model.Dlna.ProfileCondition to apply if this profile is met. #[serde(rename = "ApplyConditions")] pub apply_conditions: Vec, + /// Gets or sets the codec(s) that this profile applies to. #[serde(rename = "Codec")] pub codec: Option, + /// Gets or sets the container(s) which this profile will be applied to. #[serde(rename = "Container")] pub container: Option, + /// Gets or sets the sub-container(s) which this profile will be applied to. #[serde(rename = "SubContainer")] pub sub_container: Option, } #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct CollectionCreationResult { #[serde(rename = "Id")] - pub id: String, + pub id: uuid::Uuid, } #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct ConfigImageTypes { @@ -766,287 +1043,426 @@ pub struct ConfigImageTypes { #[serde(rename = "StillSizes")] pub still_sizes: Option>, } +/// The configuration page info. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct ConfigurationPageInfo { + /// Gets or sets the name. #[serde(rename = "Name")] pub name: String, + /// Gets or sets a value indicating whether the configurations page is enabled in the main menu. #[serde(rename = "EnableInMainMenu")] pub enable_in_main_menu: bool, + /// Gets or sets the menu section. #[serde(rename = "MenuSection")] pub menu_section: Option, + /// Gets or sets the menu icon. #[serde(rename = "MenuIcon")] pub menu_icon: Option, + /// Gets or sets the display name. #[serde(rename = "DisplayName")] pub display_name: Option, + /// Gets or sets the plugin id. #[serde(rename = "PluginId")] - pub plugin_id: Option, + pub plugin_id: Option, } +/// Defines the MediaBrowser.Model.Dlna.ContainerProfile. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct ContainerProfile { + /// Gets or sets the MediaBrowser.Model.Dlna.DlnaProfileType which this container must meet. #[serde(rename = "Type")] pub _type: DlnaProfileType, + /// Gets or sets the list of MediaBrowser.Model.Dlna.ProfileCondition which this container will be applied to. #[serde(rename = "Conditions")] pub conditions: Vec, + /// Gets or sets the container(s) which this container must meet. #[serde(rename = "Container")] pub container: Option, + /// Gets or sets the sub container(s) which this container must meet. #[serde(rename = "SubContainer")] pub sub_container: Option, } +/// Class CountryInfo. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct CountryInfo { + /// Gets or sets the name. #[serde(rename = "Name")] pub name: Option, + /// Gets or sets the display name. #[serde(rename = "DisplayName")] pub display_name: Option, + /// Gets or sets the name of the two letter ISO region. #[serde(rename = "TwoLetterISORegionName")] pub two_letter_iso_region_name: Option, + /// Gets or sets the name of the three letter ISO region. #[serde(rename = "ThreeLetterISORegionName")] pub three_letter_iso_region_name: Option, } +/// Create new playlist dto. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct CreatePlaylistDto { + /// Gets or sets the name of the new playlist. #[serde(rename = "Name")] pub name: String, + /// Gets or sets item ids to add to the playlist. #[serde(rename = "Ids")] - pub ids: Vec, + pub ids: Vec, + /// Gets or sets the user id. #[serde(rename = "UserId")] - pub user_id: Option, + pub user_id: Option, + /// Gets or sets the media type. #[serde(rename = "MediaType")] pub media_type: Option, + /// Gets or sets the playlist users. #[serde(rename = "Users")] pub users: Vec, + /// Gets or sets a value indicating whether the playlist is public. #[serde(rename = "IsPublic")] pub is_public: bool, } +/// The create user by name request body. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct CreateUserByName { + /// Gets or sets the username. #[serde(rename = "Name")] pub name: String, + /// Gets or sets the password. #[serde(rename = "Password")] pub password: Option, } +/// Class CultureDto. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct CultureDto { + /// Gets the name. #[serde(rename = "Name")] pub name: String, + /// Gets the display name. #[serde(rename = "DisplayName")] pub display_name: String, + /// Gets the name of the two letter ISO language. #[serde(rename = "TwoLetterISOLanguageName")] pub two_letter_iso_language_name: String, + /// Gets the name of the three letter ISO language. #[serde(rename = "ThreeLetterISOLanguageName")] pub three_letter_iso_language_name: Option, #[serde(rename = "ThreeLetterISOLanguageNames")] pub three_letter_iso_language_names: Vec, } +/// Default directory browser info. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct DefaultDirectoryBrowserInfoDto { + /// Gets or sets the path. #[serde(rename = "Path")] pub path: Option, } +/// A DTO representing device information. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct DeviceInfoDto { + /// Gets or sets the name. #[serde(rename = "Name")] pub name: Option, + /// Gets or sets the custom name. #[serde(rename = "CustomName")] pub custom_name: Option, + /// Gets or sets the access token. #[serde(rename = "AccessToken")] pub access_token: Option, + /// Gets or sets the identifier. #[serde(rename = "Id")] pub id: Option, + /// Gets or sets the last name of the user. #[serde(rename = "LastUserName")] pub last_user_name: Option, + /// Gets or sets the name of the application. #[serde(rename = "AppName")] pub app_name: Option, + /// Gets or sets the application version. #[serde(rename = "AppVersion")] pub app_version: Option, + /// Gets or sets the last user identifier. #[serde(rename = "LastUserId")] - pub last_user_id: Option, + pub last_user_id: Option, + /// Gets or sets the date last modified. #[serde(rename = "DateLastActivity")] - pub date_last_activity: Option, + pub date_last_activity: Option, + /// Gets or sets the capabilities. #[serde(rename = "Capabilities")] pub capabilities: ClientCapabilitiesDto, + /// Gets or sets the icon URL. #[serde(rename = "IconUrl")] pub icon_url: Option, } +/// Query result container. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct DeviceInfoDtoQueryResult { + /// Gets or sets the items. #[serde(rename = "Items")] pub items: Vec, + /// Gets or sets the total number of records available. #[serde(rename = "TotalRecordCount")] pub total_record_count: i32, + /// Gets or sets the index of the first record in Items. #[serde(rename = "StartIndex")] pub start_index: i32, } +/// A dto representing custom options for a device. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct DeviceOptionsDto { + /// Gets or sets the id. #[serde(rename = "Id")] pub id: i32, + /// Gets or sets the device id. #[serde(rename = "DeviceId")] pub device_id: Option, + /// Gets or sets the custom name. #[serde(rename = "CustomName")] pub custom_name: Option, } +/** A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which content a certain device is able to play. +
+Specifically, it defines the supported containers and +codecs (video and/or audio, including codec profiles and levels) +the device is able to direct play (without transcoding or remuxing), +as well as which containers/codecs to transcode to in case it isn't.*/ #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct DeviceProfile { + /// Gets or sets the name of this device profile. User profiles must have a unique name. #[serde(rename = "Name")] pub name: Option, + /// Gets or sets the unique internal identifier. #[serde(rename = "Id")] - pub id: Option, + pub id: Option, + /// Gets or sets the maximum allowed bitrate for all streamed content. #[serde(rename = "MaxStreamingBitrate")] pub max_streaming_bitrate: Option, + /// Gets or sets the maximum allowed bitrate for statically streamed content (= direct played files). #[serde(rename = "MaxStaticBitrate")] pub max_static_bitrate: Option, + /// Gets or sets the maximum allowed bitrate for transcoded music streams. #[serde(rename = "MusicStreamingTranscodingBitrate")] pub music_streaming_transcoding_bitrate: Option, + /// Gets or sets the maximum allowed bitrate for statically streamed (= direct played) music files. #[serde(rename = "MaxStaticMusicBitrate")] pub max_static_music_bitrate: Option, + /// Gets or sets the direct play profiles. #[serde(rename = "DirectPlayProfiles")] pub direct_play_profiles: Vec, + /// Gets or sets the transcoding profiles. #[serde(rename = "TranscodingProfiles")] pub transcoding_profiles: Vec, + /// Gets or sets the container profiles. Failing to meet these optional conditions causes transcoding to occur. #[serde(rename = "ContainerProfiles")] pub container_profiles: Vec, + /// Gets or sets the codec profiles. #[serde(rename = "CodecProfiles")] pub codec_profiles: Vec, + /// Gets or sets the subtitle profiles. #[serde(rename = "SubtitleProfiles")] pub subtitle_profiles: Vec, } +/// Defines the MediaBrowser.Model.Dlna.DirectPlayProfile. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct DirectPlayProfile { + /// Gets or sets the container. #[serde(rename = "Container")] pub container: String, + /// Gets or sets the audio codec. #[serde(rename = "AudioCodec")] pub audio_codec: Option, + /// Gets or sets the video codec. #[serde(rename = "VideoCodec")] pub video_codec: Option, + /// Gets or sets the Dlna profile type. #[serde(rename = "Type")] pub _type: DlnaProfileType, } +/// Defines the display preferences for any item that supports them (usually Folders). #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct DisplayPreferencesDto { + /// Gets or sets the user id. #[serde(rename = "Id")] pub id: Option, + /// Gets or sets the type of the view. #[serde(rename = "ViewType")] pub view_type: Option, + /// Gets or sets the sort by. #[serde(rename = "SortBy")] pub sort_by: Option, + /// Gets or sets the index by. #[serde(rename = "IndexBy")] pub index_by: Option, + /// Gets or sets a value indicating whether [remember indexing]. #[serde(rename = "RememberIndexing")] pub remember_indexing: bool, + /// Gets or sets the height of the primary image. #[serde(rename = "PrimaryImageHeight")] pub primary_image_height: i32, + /// Gets or sets the width of the primary image. #[serde(rename = "PrimaryImageWidth")] pub primary_image_width: i32, + /// Gets or sets the custom prefs. #[serde(rename = "CustomPrefs")] pub custom_prefs: std::collections::HashMap>, + /// Gets or sets the scroll direction. #[serde(rename = "ScrollDirection")] pub scroll_direction: ScrollDirection, + /// Gets or sets a value indicating whether to show backdrops on this item. #[serde(rename = "ShowBackdrop")] pub show_backdrop: bool, + /// Gets or sets a value indicating whether [remember sorting]. #[serde(rename = "RememberSorting")] pub remember_sorting: bool, + /// Gets or sets the sort order. #[serde(rename = "SortOrder")] pub sort_order: SortOrder, + /// Gets or sets a value indicating whether [show sidebar]. #[serde(rename = "ShowSidebar")] pub show_sidebar: bool, + /// Gets or sets the client. #[serde(rename = "Client")] pub client: Option, } +/// Class EncodingOptions. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct EncodingOptions { + /// Gets or sets the thread count used for encoding. #[serde(rename = "EncodingThreadCount")] pub encoding_thread_count: i32, + /// Gets or sets the temporary transcoding path. #[serde(rename = "TranscodingTempPath")] pub transcoding_temp_path: Option, + /// Gets or sets the path to the fallback font. #[serde(rename = "FallbackFontPath")] pub fallback_font_path: Option, + /// Gets or sets a value indicating whether to use the fallback font. #[serde(rename = "EnableFallbackFont")] pub enable_fallback_font: bool, + /// Gets or sets a value indicating whether audio VBR is enabled. #[serde(rename = "EnableAudioVbr")] pub enable_audio_vbr: bool, + /// Gets or sets the audio boost applied when downmixing audio. #[serde(rename = "DownMixAudioBoost")] pub down_mix_audio_boost: f64, + /// Gets or sets the algorithm used for downmixing audio to stereo. #[serde(rename = "DownMixStereoAlgorithm")] pub down_mix_stereo_algorithm: DownMixStereoAlgorithms, + /// Gets or sets the maximum size of the muxing queue. #[serde(rename = "MaxMuxingQueueSize")] pub max_muxing_queue_size: i32, + /// Gets or sets a value indicating whether throttling is enabled. #[serde(rename = "EnableThrottling")] pub enable_throttling: bool, + /// Gets or sets the delay after which throttling happens. #[serde(rename = "ThrottleDelaySeconds")] pub throttle_delay_seconds: i32, + /// Gets or sets a value indicating whether segment deletion is enabled. #[serde(rename = "EnableSegmentDeletion")] pub enable_segment_deletion: bool, + /// Gets or sets seconds for which segments should be kept before being deleted. #[serde(rename = "SegmentKeepSeconds")] pub segment_keep_seconds: i32, + /// Gets or sets the hardware acceleration type. #[serde(rename = "HardwareAccelerationType")] pub hardware_acceleration_type: HardwareAccelerationType, + /// Gets or sets the FFmpeg path as set by the user via the UI. #[serde(rename = "EncoderAppPath")] pub encoder_app_path: Option, + /// Gets or sets the current FFmpeg path being used by the system and displayed on the transcode page. #[serde(rename = "EncoderAppPathDisplay")] pub encoder_app_path_display: Option, + /// Gets or sets the VA-API device. #[serde(rename = "VaapiDevice")] pub vaapi_device: Option, + /// Gets or sets the QSV device. #[serde(rename = "QsvDevice")] pub qsv_device: Option, + /// Gets or sets a value indicating whether tonemapping is enabled. #[serde(rename = "EnableTonemapping")] pub enable_tonemapping: bool, + /// Gets or sets a value indicating whether VPP tonemapping is enabled. #[serde(rename = "EnableVppTonemapping")] pub enable_vpp_tonemapping: bool, + /// Gets or sets a value indicating whether videotoolbox tonemapping is enabled. #[serde(rename = "EnableVideoToolboxTonemapping")] pub enable_video_toolbox_tonemapping: bool, + /// Gets or sets the tone-mapping algorithm. #[serde(rename = "TonemappingAlgorithm")] pub tonemapping_algorithm: TonemappingAlgorithm, + /// Gets or sets the tone-mapping mode. #[serde(rename = "TonemappingMode")] pub tonemapping_mode: TonemappingMode, + /// Gets or sets the tone-mapping range. #[serde(rename = "TonemappingRange")] pub tonemapping_range: TonemappingRange, + /// Gets or sets the tone-mapping desaturation. #[serde(rename = "TonemappingDesat")] pub tonemapping_desat: f64, + /// Gets or sets the tone-mapping peak. #[serde(rename = "TonemappingPeak")] pub tonemapping_peak: f64, + /// Gets or sets the tone-mapping parameters. #[serde(rename = "TonemappingParam")] pub tonemapping_param: f64, + /// Gets or sets the VPP tone-mapping brightness. #[serde(rename = "VppTonemappingBrightness")] pub vpp_tonemapping_brightness: f64, + /// Gets or sets the VPP tone-mapping contrast. #[serde(rename = "VppTonemappingContrast")] pub vpp_tonemapping_contrast: f64, + /// Gets or sets the H264 CRF. #[serde(rename = "H264Crf")] pub h264_crf: i32, + /// Gets or sets the H265 CRF. #[serde(rename = "H265Crf")] pub h265_crf: i32, + /// Gets or sets the encoder preset. #[serde(rename = "EncoderPreset")] pub encoder_preset: Option, + /// Gets or sets a value indicating whether the framerate is doubled when deinterlacing. #[serde(rename = "DeinterlaceDoubleRate")] pub deinterlace_double_rate: bool, + /// Gets or sets the deinterlace method. #[serde(rename = "DeinterlaceMethod")] pub deinterlace_method: DeinterlaceMethod, + /// Gets or sets a value indicating whether 10bit HEVC decoding is enabled. #[serde(rename = "EnableDecodingColorDepth10Hevc")] pub enable_decoding_color_depth10_hevc: bool, + /// Gets or sets a value indicating whether 10bit VP9 decoding is enabled. #[serde(rename = "EnableDecodingColorDepth10Vp9")] pub enable_decoding_color_depth10_vp9: bool, + /// Gets or sets a value indicating whether 8/10bit HEVC RExt decoding is enabled. #[serde(rename = "EnableDecodingColorDepth10HevcRext")] pub enable_decoding_color_depth10_hevc_rext: bool, + /// Gets or sets a value indicating whether 12bit HEVC RExt decoding is enabled. #[serde(rename = "EnableDecodingColorDepth12HevcRext")] pub enable_decoding_color_depth12_hevc_rext: bool, + /// Gets or sets a value indicating whether the enhanced NVDEC is enabled. #[serde(rename = "EnableEnhancedNvdecDecoder")] pub enable_enhanced_nvdec_decoder: bool, + /// Gets or sets a value indicating whether the system native hardware decoder should be used. #[serde(rename = "PreferSystemNativeHwDecoder")] pub prefer_system_native_hw_decoder: bool, + /// Gets or sets a value indicating whether the Intel H264 low-power hardware encoder should be used. #[serde(rename = "EnableIntelLowPowerH264HwEncoder")] pub enable_intel_low_power_h264_hw_encoder: bool, + /// Gets or sets a value indicating whether the Intel HEVC low-power hardware encoder should be used. #[serde(rename = "EnableIntelLowPowerHevcHwEncoder")] pub enable_intel_low_power_hevc_hw_encoder: bool, + /// Gets or sets a value indicating whether hardware encoding is enabled. #[serde(rename = "EnableHardwareEncoding")] pub enable_hardware_encoding: bool, + /// Gets or sets a value indicating whether HEVC encoding is enabled. #[serde(rename = "AllowHevcEncoding")] pub allow_hevc_encoding: bool, + /// Gets or sets a value indicating whether AV1 encoding is enabled. #[serde(rename = "AllowAv1Encoding")] pub allow_av1_encoding: bool, + /// Gets or sets a value indicating whether subtitle extraction is enabled. #[serde(rename = "EnableSubtitleExtraction")] pub enable_subtitle_extraction: bool, + /// Gets or sets the codecs hardware encoding is used for. #[serde(rename = "HardwareDecodingCodecs")] pub hardware_decoding_codecs: Option>, + /// Gets or sets the file extensions on-demand metadata based keyframe extraction is enabled for. #[serde(rename = "AllowOnDemandMetadataBasedKeyframeExtractionForExtensions")] pub allow_on_demand_metadata_based_keyframe_extraction_for_extensions: Option< Vec, @@ -1059,323 +1475,465 @@ pub struct EndPointInfo { #[serde(rename = "IsInNetwork")] pub is_in_network: bool, } +/// Represents the external id information for serialization to the client. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct ExternalIdInfo { + /// Gets or sets the display name of the external id provider (IE: IMDB, MusicBrainz, etc). #[serde(rename = "Name")] pub name: String, + /// Gets or sets the unique key for this id. This key should be unique across all providers. #[serde(rename = "Key")] pub key: String, + /** Gets or sets the specific media type for this id. This is used to distinguish between the different +external id types for providers with multiple ids. +A null value indicates there is no specific media type associated with the external id, or this is the +default id for the external provider so there is no need to specify a type.*/ #[serde(rename = "Type")] pub _type: Option, + /// Gets or sets the URL format string. #[serde(rename = "UrlFormatString")] pub url_format_string: Option, } #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct ExternalUrl { + /// Gets or sets the name. #[serde(rename = "Name")] pub name: Option, + /// Gets or sets the type of the item. #[serde(rename = "Url")] pub url: Option, } +/// Class FileSystemEntryInfo. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct FileSystemEntryInfo { + /// Gets the name. #[serde(rename = "Name")] pub name: String, + /// Gets the path. #[serde(rename = "Path")] pub path: String, + /// Gets the type. #[serde(rename = "Type")] pub _type: FileSystemEntryType, } +/// Class FontFile. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct FontFile { + /// Gets or sets the name. #[serde(rename = "Name")] pub name: Option, + /// Gets or sets the size. #[serde(rename = "Size")] pub size: i64, + /// Gets or sets the date created. #[serde(rename = "DateCreated")] - pub date_created: String, + pub date_created: jiff::Zoned, + /// Gets or sets the date modified. #[serde(rename = "DateModified")] - pub date_modified: String, + pub date_modified: jiff::Zoned, } +/// Force keep alive websocket messages. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct ForceKeepAliveMessage { + /// Gets or sets the data. #[serde(rename = "Data")] pub data: i32, + /// Gets or sets the message id. #[serde(rename = "MessageId")] - pub message_id: String, + pub message_id: uuid::Uuid, + /// The different kinds of messages that are used in the WebSocket api. #[serde(rename = "MessageType")] pub message_type: SessionMessageType, } +/// Forgot Password request body DTO. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct ForgotPasswordDto { + /// Gets or sets the entered username to have its password reset. #[serde(rename = "EnteredUsername")] pub entered_username: String, } +/// Forgot Password Pin enter request body DTO. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct ForgotPasswordPinDto { + /// Gets or sets the entered pin to have the password reset. #[serde(rename = "Pin")] pub pin: String, } #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct ForgotPasswordResult { + /// Gets or sets the action. #[serde(rename = "Action")] pub action: ForgotPasswordAction, + /// Gets or sets the pin file. #[serde(rename = "PinFile")] pub pin_file: Option, + /// Gets or sets the pin expiration date. #[serde(rename = "PinExpirationDate")] - pub pin_expiration_date: Option, + pub pin_expiration_date: Option, } #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct GeneralCommand { + /// This exists simply to identify a set of known commands. #[serde(rename = "Name")] pub name: GeneralCommandType, #[serde(rename = "ControllingUserId")] - pub controlling_user_id: String, + pub controlling_user_id: uuid::Uuid, #[serde(rename = "Arguments")] pub arguments: std::collections::HashMap>, } +/// General command websocket message. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct GeneralCommandMessage { + /// Gets or sets the data. #[serde(rename = "Data")] pub data: Option, + /// Gets or sets the message id. #[serde(rename = "MessageId")] - pub message_id: String, + pub message_id: uuid::Uuid, + /// The different kinds of messages that are used in the WebSocket api. #[serde(rename = "MessageType")] pub message_type: SessionMessageType, } +/// Get programs dto. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct GetProgramsDto { + /// Gets or sets the channels to return guide information for. #[serde(rename = "ChannelIds")] - pub channel_ids: Option>, + pub channel_ids: Option>, + /// Gets or sets optional. Filter by user id. #[serde(rename = "UserId")] - pub user_id: Option, + pub user_id: Option, + /// Gets or sets the minimum premiere start date. #[serde(rename = "MinStartDate")] - pub min_start_date: Option, + pub min_start_date: Option, + /// Gets or sets filter by programs that have completed airing, or not. #[serde(rename = "HasAired")] pub has_aired: Option, + /// Gets or sets filter by programs that are currently airing, or not. #[serde(rename = "IsAiring")] pub is_airing: Option, + /// Gets or sets the maximum premiere start date. #[serde(rename = "MaxStartDate")] - pub max_start_date: Option, + pub max_start_date: Option, + /// Gets or sets the minimum premiere end date. #[serde(rename = "MinEndDate")] - pub min_end_date: Option, + pub min_end_date: Option, + /// Gets or sets the maximum premiere end date. #[serde(rename = "MaxEndDate")] - pub max_end_date: Option, + pub max_end_date: Option, + /// Gets or sets filter for movies. #[serde(rename = "IsMovie")] pub is_movie: Option, + /// Gets or sets filter for series. #[serde(rename = "IsSeries")] pub is_series: Option, + /// Gets or sets filter for news. #[serde(rename = "IsNews")] pub is_news: Option, + /// Gets or sets filter for kids. #[serde(rename = "IsKids")] pub is_kids: Option, + /// Gets or sets filter for sports. #[serde(rename = "IsSports")] pub is_sports: Option, + /// Gets or sets the record index to start at. All items with a lower index will be dropped from the results. #[serde(rename = "StartIndex")] pub start_index: Option, + /// Gets or sets the maximum number of records to return. #[serde(rename = "Limit")] pub limit: Option, + /// Gets or sets specify one or more sort orders, comma delimited. Options: Name, StartDate. #[serde(rename = "SortBy")] pub sort_by: Option>, + /// Gets or sets sort order. #[serde(rename = "SortOrder")] pub sort_order: Option>, + /// Gets or sets the genres to return guide information for. #[serde(rename = "Genres")] pub genres: Option>, + /// Gets or sets the genre ids to return guide information for. #[serde(rename = "GenreIds")] - pub genre_ids: Option>, + pub genre_ids: Option>, + /// Gets or sets include image information in output. #[serde(rename = "EnableImages")] pub enable_images: Option, + /// Gets or sets a value indicating whether retrieve total record count. #[serde(rename = "EnableTotalRecordCount")] pub enable_total_record_count: bool, + /// Gets or sets the max number of images to return, per image type. #[serde(rename = "ImageTypeLimit")] pub image_type_limit: Option, + /// Gets or sets the image types to include in the output. #[serde(rename = "EnableImageTypes")] pub enable_image_types: Option>, + /// Gets or sets include user data. #[serde(rename = "EnableUserData")] pub enable_user_data: Option, + /// Gets or sets filter by series timer id. #[serde(rename = "SeriesTimerId")] pub series_timer_id: Option, + /// Gets or sets filter by library series id. #[serde(rename = "LibrarySeriesId")] - pub library_series_id: Option, + pub library_series_id: Option, + /// Gets or sets specify additional fields of information to return in the output. #[serde(rename = "Fields")] pub fields: Option>, } +/// Class GroupInfoDto. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct GroupInfoDto { + /// Gets the group identifier. #[serde(rename = "GroupId")] - pub group_id: String, + pub group_id: uuid::Uuid, + /// Gets the group name. #[serde(rename = "GroupName")] pub group_name: String, + /// Gets the group state. #[serde(rename = "State")] pub state: GroupStateType, + /// Gets the participants. #[serde(rename = "Participants")] pub participants: Vec, + /// Gets the date when this DTO has been created. #[serde(rename = "LastUpdatedAt")] - pub last_updated_at: String, + pub last_updated_at: jiff::Zoned, } +/// Class GroupUpdate. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct GroupInfoDtoGroupUpdate { + /// Gets the group identifier. #[serde(rename = "GroupId")] - pub group_id: String, + pub group_id: uuid::Uuid, + /// Gets the update type. #[serde(rename = "Type")] pub _type: GroupUpdateType, + /// Gets the update data. #[serde(rename = "Data")] pub data: GroupInfoDto, } +/// Class GroupStateUpdate. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct GroupStateUpdate { + /// Gets the state of the group. #[serde(rename = "State")] pub state: GroupStateType, + /// Gets the reason of the state change. #[serde(rename = "Reason")] pub reason: PlaybackRequestType, } +/// Class GroupUpdate. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct GroupStateUpdateGroupUpdate { + /// Gets the group identifier. #[serde(rename = "GroupId")] - pub group_id: String, + pub group_id: uuid::Uuid, + /// Gets the update type. #[serde(rename = "Type")] pub _type: GroupUpdateType, + /// Gets the update data. #[serde(rename = "Data")] pub data: GroupStateUpdate, } +/// Group update without data. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct GroupUpdate { + /// Gets the group identifier. #[serde(rename = "GroupId")] - pub group_id: String, + pub group_id: uuid::Uuid, + /// Gets the update type. #[serde(rename = "Type")] pub _type: GroupUpdateType, } #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct GuideInfo { + /// Gets or sets the start date. #[serde(rename = "StartDate")] - pub start_date: String, + pub start_date: jiff::Zoned, + /// Gets or sets the end date. #[serde(rename = "EndDate")] - pub end_date: String, + pub end_date: jiff::Zoned, } +/// Class IgnoreWaitRequestDto. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct IgnoreWaitRequestDto { + /// Gets or sets a value indicating whether the client should be ignored. #[serde(rename = "IgnoreWait")] pub ignore_wait: bool, } +/// Class ImageInfo. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct ImageInfo { + /// Gets or sets the type of the image. #[serde(rename = "ImageType")] pub image_type: ImageType, + /// Gets or sets the index of the image. #[serde(rename = "ImageIndex")] pub image_index: Option, + /// Gets or sets the image tag. #[serde(rename = "ImageTag")] pub image_tag: Option, + /// Gets or sets the path. #[serde(rename = "Path")] pub path: Option, + /// Gets or sets the blurhash. #[serde(rename = "BlurHash")] pub blur_hash: Option, + /// Gets or sets the height. #[serde(rename = "Height")] pub height: Option, + /// Gets or sets the width. #[serde(rename = "Width")] pub width: Option, + /// Gets or sets the size. #[serde(rename = "Size")] pub size: i64, } #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct ImageOption { + /// Gets or sets the type. #[serde(rename = "Type")] pub _type: ImageType, + /// Gets or sets the limit. #[serde(rename = "Limit")] pub limit: i32, + /// Gets or sets the minimum width. #[serde(rename = "MinWidth")] pub min_width: i32, } +/// Class ImageProviderInfo. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct ImageProviderInfo { + /// Gets the name. #[serde(rename = "Name")] pub name: String, + /// Gets the supported image types. #[serde(rename = "SupportedImages")] pub supported_images: Vec, } +/// Keep alive websocket messages. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct InboundKeepAliveMessage { + /// The different kinds of messages that are used in the WebSocket api. #[serde(rename = "MessageType")] pub message_type: SessionMessageType, } +/// Class InstallationInfo. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct InstallationInfo { + /// Gets or sets the Id. #[serde(rename = "Guid")] - pub guid: String, + pub guid: uuid::Uuid, + /// Gets or sets the name. #[serde(rename = "Name")] pub name: Option, + /// Gets or sets the version. #[serde(rename = "Version")] pub version: Option, + /// Gets or sets the changelog for this version. #[serde(rename = "Changelog")] pub changelog: Option, + /// Gets or sets the source URL. #[serde(rename = "SourceUrl")] pub source_url: Option, + /// Gets or sets a checksum for the binary. #[serde(rename = "Checksum")] pub checksum: Option, + /// Gets or sets package information for the installation. #[serde(rename = "PackageInfo")] pub package_info: Option, } +/// Defines the MediaBrowser.Common.Plugins.IPlugin. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct IPlugin { + /// Gets the name of the plugin. #[serde(rename = "Name")] pub name: Option, + /// Gets the Description. #[serde(rename = "Description")] pub description: Option, + /// Gets the unique id. #[serde(rename = "Id")] - pub id: String, + pub id: uuid::Uuid, + /// Gets the plugin version. #[serde(rename = "Version")] pub version: Option, + /// Gets the path to the assembly file. #[serde(rename = "AssemblyFilePath")] pub assembly_file_path: Option, + /// Gets a value indicating whether the plugin can be uninstalled. #[serde(rename = "CanUninstall")] pub can_uninstall: bool, + /// Gets the full path to the data folder, where the plugin can store any miscellaneous files needed. #[serde(rename = "DataFolderPath")] pub data_folder_path: Option, } +/// Class LibrarySummary. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct ItemCounts { + /// Gets or sets the movie count. #[serde(rename = "MovieCount")] pub movie_count: i32, + /// Gets or sets the series count. #[serde(rename = "SeriesCount")] pub series_count: i32, + /// Gets or sets the episode count. #[serde(rename = "EpisodeCount")] pub episode_count: i32, + /// Gets or sets the artist count. #[serde(rename = "ArtistCount")] pub artist_count: i32, + /// Gets or sets the program count. #[serde(rename = "ProgramCount")] pub program_count: i32, + /// Gets or sets the trailer count. #[serde(rename = "TrailerCount")] pub trailer_count: i32, + /// Gets or sets the song count. #[serde(rename = "SongCount")] pub song_count: i32, + /// Gets or sets the album count. #[serde(rename = "AlbumCount")] pub album_count: i32, + /// Gets or sets the music video count. #[serde(rename = "MusicVideoCount")] pub music_video_count: i32, + /// Gets or sets the box set count. #[serde(rename = "BoxSetCount")] pub box_set_count: i32, + /// Gets or sets the book count. #[serde(rename = "BookCount")] pub book_count: i32, + /// Gets or sets the item count. #[serde(rename = "ItemCount")] pub item_count: i32, } +/// Class JoinGroupRequestDto. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct JoinGroupRequestDto { + /// Gets or sets the group identifier. #[serde(rename = "GroupId")] - pub group_id: String, + pub group_id: uuid::Uuid, } +/// Library changed message. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct LibraryChangedMessage { + /// Class LibraryUpdateInfo. #[serde(rename = "Data")] pub data: Option, + /// Gets or sets the message id. #[serde(rename = "MessageId")] - pub message_id: String, + pub message_id: uuid::Uuid, + /// The different kinds of messages that are used in the WebSocket api. #[serde(rename = "MessageType")] pub message_type: SessionMessageType, } +/// Library option info dto. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct LibraryOptionInfoDto { + /// Gets or sets name. #[serde(rename = "Name")] pub name: Option, + /// Gets or sets a value indicating whether default enabled. #[serde(rename = "DefaultEnabled")] pub default_enabled: bool, } @@ -1413,8 +1971,10 @@ pub struct LibraryOptions { pub enable_embedded_episode_infos: bool, #[serde(rename = "AutomaticRefreshIntervalDays")] pub automatic_refresh_interval_days: i32, + /// Gets or sets the preferred metadata language. #[serde(rename = "PreferredMetadataLanguage")] pub preferred_metadata_language: Option, + /// Gets or sets the metadata country code. #[serde(rename = "MetadataCountryCode")] pub metadata_country_code: Option, #[serde(rename = "SeasonZeroDisplayName")] @@ -1461,47 +2021,66 @@ pub struct LibraryOptions { pub delimiter_whitelist: Vec, #[serde(rename = "AutomaticallyAddToCollection")] pub automatically_add_to_collection: bool, + /// An enum representing the options to disable embedded subs. #[serde(rename = "AllowEmbeddedSubtitles")] pub allow_embedded_subtitles: EmbeddedSubtitleOptions, #[serde(rename = "TypeOptions")] pub type_options: Vec, } +/// Library options result dto. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct LibraryOptionsResultDto { + /// Gets or sets the metadata savers. #[serde(rename = "MetadataSavers")] pub metadata_savers: Vec, + /// Gets or sets the metadata readers. #[serde(rename = "MetadataReaders")] pub metadata_readers: Vec, + /// Gets or sets the subtitle fetchers. #[serde(rename = "SubtitleFetchers")] pub subtitle_fetchers: Vec, + /// Gets or sets the list of lyric fetchers. #[serde(rename = "LyricFetchers")] pub lyric_fetchers: Vec, + /// Gets or sets the type options. #[serde(rename = "TypeOptions")] pub type_options: Vec, } +/// Library type options dto. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct LibraryTypeOptionsDto { + /// Gets or sets the type. #[serde(rename = "Type")] pub _type: Option, + /// Gets or sets the metadata fetchers. #[serde(rename = "MetadataFetchers")] pub metadata_fetchers: Vec, + /// Gets or sets the image fetchers. #[serde(rename = "ImageFetchers")] pub image_fetchers: Vec, + /// Gets or sets the supported image types. #[serde(rename = "SupportedImageTypes")] pub supported_image_types: Vec, + /// Gets or sets the default image options. #[serde(rename = "DefaultImageOptions")] pub default_image_options: Vec, } +/// Class LibraryUpdateInfo. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct LibraryUpdateInfo { + /// Gets or sets the folders added to. #[serde(rename = "FoldersAddedTo")] pub folders_added_to: Vec, + /// Gets or sets the folders removed from. #[serde(rename = "FoldersRemovedFrom")] pub folders_removed_from: Vec, + /// Gets or sets the items added. #[serde(rename = "ItemsAdded")] pub items_added: Vec, + /// Gets or sets the items removed. #[serde(rename = "ItemsRemoved")] pub items_removed: Vec, + /// Gets or sets the items updated. #[serde(rename = "ItemsUpdated")] pub items_updated: Vec, #[serde(rename = "CollectionFolders")] @@ -1555,10 +2134,13 @@ pub struct LiveStreamResponse { } #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct LiveTvInfo { + /// Gets or sets the services. #[serde(rename = "Services")] pub services: Vec, + /// Gets or sets a value indicating whether this instance is enabled. #[serde(rename = "IsEnabled")] pub is_enabled: bool, + /// Gets or sets the enabled users. #[serde(rename = "EnabledUsers")] pub enabled_users: Vec, } @@ -1595,20 +2177,28 @@ pub struct LiveTvOptions { #[serde(rename = "SaveRecordingImages")] pub save_recording_images: bool, } +/// Class ServiceInfo. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct LiveTvServiceInfo { + /// Gets or sets the name. #[serde(rename = "Name")] pub name: Option, + /// Gets or sets the home page URL. #[serde(rename = "HomePageUrl")] pub home_page_url: Option, + /// Gets or sets the status. #[serde(rename = "Status")] pub status: LiveTvServiceStatus, + /// Gets or sets the status message. #[serde(rename = "StatusMessage")] pub status_message: Option, + /// Gets or sets the version. #[serde(rename = "Version")] pub version: Option, + /// Gets or sets a value indicating whether this instance has update available. #[serde(rename = "HasUpdateAvailable")] pub has_update_available: bool, + /// Gets or sets a value indicating whether this instance is visible. #[serde(rename = "IsVisible")] pub is_visible: bool, #[serde(rename = "Tuners")] @@ -1623,12 +2213,16 @@ pub struct LocalizationOption { } #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct LogFile { + /// Gets or sets the date created. #[serde(rename = "DateCreated")] - pub date_created: String, + pub date_created: jiff::Zoned, + /// Gets or sets the date modified. #[serde(rename = "DateModified")] - pub date_modified: String, + pub date_modified: jiff::Zoned, + /// Gets or sets the size. #[serde(rename = "Size")] pub size: i64, + /// Gets or sets the name. #[serde(rename = "Name")] pub name: String, } @@ -1639,66 +2233,95 @@ pub struct LoginInfoInput { #[serde(rename = "Password")] pub password: String, } +/// LyricResponse model. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct LyricDto { + /// Gets or sets Metadata for the lyrics. #[serde(rename = "Metadata")] pub metadata: LyricMetadata, + /// Gets or sets a collection of individual lyric lines. #[serde(rename = "Lyrics")] pub lyrics: Vec, } +/// Lyric model. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct LyricLine { + /// Gets the text of this lyric line. #[serde(rename = "Text")] pub text: String, + /// Gets the start time in ticks. #[serde(rename = "Start")] pub start: Option, } +/// LyricMetadata model. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct LyricMetadata { + /// Gets or sets the song artist. #[serde(rename = "Artist")] pub artist: Option, + /// Gets or sets the album this song is on. #[serde(rename = "Album")] pub album: Option, + /// Gets or sets the title of the song. #[serde(rename = "Title")] pub title: Option, + /// Gets or sets the author of the lyric data. #[serde(rename = "Author")] pub author: Option, + /// Gets or sets the length of the song in ticks. #[serde(rename = "Length")] pub length: Option, + /// Gets or sets who the LRC file was created by. #[serde(rename = "By")] pub by: Option, + /// Gets or sets the lyric offset compared to audio in ticks. #[serde(rename = "Offset")] pub offset: Option, + /// Gets or sets the software used to create the LRC file. #[serde(rename = "Creator")] pub creator: Option, + /// Gets or sets the version of the creator used. #[serde(rename = "Version")] pub version: Option, + /// Gets or sets a value indicating whether this lyric is synced. #[serde(rename = "IsSynced")] pub is_synced: Option, } +/// Class MediaAttachment. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct MediaAttachment { + /// Gets or sets the codec. #[serde(rename = "Codec")] pub codec: Option, + /// Gets or sets the codec tag. #[serde(rename = "CodecTag")] pub codec_tag: Option, + /// Gets or sets the comment. #[serde(rename = "Comment")] pub comment: Option, + /// Gets or sets the index. #[serde(rename = "Index")] pub index: i32, + /// Gets or sets the filename. #[serde(rename = "FileName")] pub file_name: Option, + /// Gets or sets the MIME type. #[serde(rename = "MimeType")] pub mime_type: Option, + /// Gets or sets the delivery URL. #[serde(rename = "DeliveryUrl")] pub delivery_url: Option, } +/// Media Path dto. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct MediaPathDto { + /// Gets or sets the name of the library. #[serde(rename = "Name")] pub name: String, + /// Gets or sets the path to add. #[serde(rename = "Path")] pub path: Option, + /// Gets or sets the path info. #[serde(rename = "PathInfo")] pub path_info: Option, } @@ -1707,25 +2330,35 @@ pub struct MediaPathInfo { #[serde(rename = "Path")] pub path: String, } +/// Api model for MediaSegment's. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct MediaSegmentDto { + /// Gets or sets the id of the media segment. #[serde(rename = "Id")] - pub id: String, + pub id: uuid::Uuid, + /// Gets or sets the id of the associated item. #[serde(rename = "ItemId")] - pub item_id: String, + pub item_id: uuid::Uuid, + /// Gets or sets the type of content this segment defines. #[serde(rename = "Type")] pub _type: MediaSegmentType, + /// Gets or sets the start of the segment. #[serde(rename = "StartTicks")] pub start_ticks: i64, + /// Gets or sets the end of the segment. #[serde(rename = "EndTicks")] pub end_ticks: i64, } +/// Query result container. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct MediaSegmentDtoQueryResult { + /// Gets or sets the items. #[serde(rename = "Items")] pub items: Vec, + /// Gets or sets the total number of records available. #[serde(rename = "TotalRecordCount")] pub total_record_count: i32, + /// Gets or sets the index of the first record in Items. #[serde(rename = "StartIndex")] pub start_index: i32, } @@ -1749,6 +2382,8 @@ pub struct MediaSourceInfo { pub size: Option, #[serde(rename = "Name")] pub name: Option, + /** Gets or sets a value indicating whether the media is remote. +Differentiate internet url vs local network.*/ #[serde(rename = "IsRemote")] pub is_remote: bool, #[serde(rename = "ETag")] @@ -1809,6 +2444,8 @@ pub struct MediaSourceInfo { pub required_http_headers: Option>>, #[serde(rename = "TranscodingUrl")] pub transcoding_url: Option, + /** Media streaming protocol. +Lowercase for backwards compatibility.*/ #[serde(rename = "TranscodingSubProtocol")] pub transcoding_sub_protocol: MediaStreamProtocol, #[serde(rename = "TranscodingContainer")] @@ -1822,54 +2459,79 @@ pub struct MediaSourceInfo { #[serde(rename = "HasSegments")] pub has_segments: bool, } +/// Class MediaStream. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct MediaStream { + /// Gets or sets the codec. #[serde(rename = "Codec")] pub codec: Option, + /// Gets or sets the codec tag. #[serde(rename = "CodecTag")] pub codec_tag: Option, + /// Gets or sets the language. #[serde(rename = "Language")] pub language: Option, + /// Gets or sets the color range. #[serde(rename = "ColorRange")] pub color_range: Option, + /// Gets or sets the color space. #[serde(rename = "ColorSpace")] pub color_space: Option, + /// Gets or sets the color transfer. #[serde(rename = "ColorTransfer")] pub color_transfer: Option, + /// Gets or sets the color primaries. #[serde(rename = "ColorPrimaries")] pub color_primaries: Option, + /// Gets or sets the Dolby Vision version major. #[serde(rename = "DvVersionMajor")] pub dv_version_major: Option, + /// Gets or sets the Dolby Vision version minor. #[serde(rename = "DvVersionMinor")] pub dv_version_minor: Option, + /// Gets or sets the Dolby Vision profile. #[serde(rename = "DvProfile")] pub dv_profile: Option, + /// Gets or sets the Dolby Vision level. #[serde(rename = "DvLevel")] pub dv_level: Option, + /// Gets or sets the Dolby Vision rpu present flag. #[serde(rename = "RpuPresentFlag")] pub rpu_present_flag: Option, + /// Gets or sets the Dolby Vision el present flag. #[serde(rename = "ElPresentFlag")] pub el_present_flag: Option, + /// Gets or sets the Dolby Vision bl present flag. #[serde(rename = "BlPresentFlag")] pub bl_present_flag: Option, + /// Gets or sets the Dolby Vision bl signal compatibility id. #[serde(rename = "DvBlSignalCompatibilityId")] pub dv_bl_signal_compatibility_id: Option, + /// Gets or sets the Rotation in degrees. #[serde(rename = "Rotation")] pub rotation: Option, + /// Gets or sets the comment. #[serde(rename = "Comment")] pub comment: Option, + /// Gets or sets the time base. #[serde(rename = "TimeBase")] pub time_base: Option, + /// Gets or sets the codec time base. #[serde(rename = "CodecTimeBase")] pub codec_time_base: Option, + /// Gets or sets the title. #[serde(rename = "Title")] pub title: Option, + /// Gets the video range. #[serde(rename = "VideoRange")] pub video_range: VideoRange, + /// Gets the video range type. #[serde(rename = "VideoRangeType")] pub video_range_type: VideoRangeType, + /// Gets the video dovi title. #[serde(rename = "VideoDoViTitle")] pub video_do_vi_title: Option, + /// Gets the audio spatial format. #[serde(rename = "AudioSpatialFormat")] pub audio_spatial_format: AudioSpatialFormat, #[serde(rename = "LocalizedUndefined")] @@ -1886,80 +2548,118 @@ pub struct MediaStream { pub display_title: Option, #[serde(rename = "NalLengthSize")] pub nal_length_size: Option, + /// Gets or sets a value indicating whether this instance is interlaced. #[serde(rename = "IsInterlaced")] pub is_interlaced: bool, #[serde(rename = "IsAVC")] pub is_avc: Option, + /// Gets or sets the channel layout. #[serde(rename = "ChannelLayout")] pub channel_layout: Option, + /// Gets or sets the bit rate. #[serde(rename = "BitRate")] pub bit_rate: Option, + /// Gets or sets the bit depth. #[serde(rename = "BitDepth")] pub bit_depth: Option, + /// Gets or sets the reference frames. #[serde(rename = "RefFrames")] pub ref_frames: Option, + /// Gets or sets the length of the packet. #[serde(rename = "PacketLength")] pub packet_length: Option, + /// Gets or sets the channels. #[serde(rename = "Channels")] pub channels: Option, + /// Gets or sets the sample rate. #[serde(rename = "SampleRate")] pub sample_rate: Option, + /// Gets or sets a value indicating whether this instance is default. #[serde(rename = "IsDefault")] pub is_default: bool, + /// Gets or sets a value indicating whether this instance is forced. #[serde(rename = "IsForced")] pub is_forced: bool, + /// Gets or sets a value indicating whether this instance is for the hearing impaired. #[serde(rename = "IsHearingImpaired")] pub is_hearing_impaired: bool, + /// Gets or sets the height. #[serde(rename = "Height")] pub height: Option, + /// Gets or sets the width. #[serde(rename = "Width")] pub width: Option, + /// Gets or sets the average frame rate. #[serde(rename = "AverageFrameRate")] - pub average_frame_rate: Option, + pub average_frame_rate: Option, + /// Gets or sets the real frame rate. #[serde(rename = "RealFrameRate")] - pub real_frame_rate: Option, + pub real_frame_rate: Option, + /** Gets the framerate used as reference. +Prefer AverageFrameRate, if that is null or an unrealistic value +then fallback to RealFrameRate.*/ #[serde(rename = "ReferenceFrameRate")] - pub reference_frame_rate: Option, + pub reference_frame_rate: Option, + /// Gets or sets the profile. #[serde(rename = "Profile")] pub profile: Option, + /// Gets or sets the type. #[serde(rename = "Type")] pub _type: MediaStreamType, + /// Gets or sets the aspect ratio. #[serde(rename = "AspectRatio")] pub aspect_ratio: Option, + /// Gets or sets the index. #[serde(rename = "Index")] pub index: i32, + /// Gets or sets the score. #[serde(rename = "Score")] pub score: Option, + /// Gets or sets a value indicating whether this instance is external. #[serde(rename = "IsExternal")] pub is_external: bool, + /// Gets or sets the method. #[serde(rename = "DeliveryMethod")] pub delivery_method: Option, + /// Gets or sets the delivery URL. #[serde(rename = "DeliveryUrl")] pub delivery_url: Option, + /// Gets or sets a value indicating whether this instance is external URL. #[serde(rename = "IsExternalUrl")] pub is_external_url: Option, #[serde(rename = "IsTextSubtitleStream")] pub is_text_subtitle_stream: bool, + /// Gets or sets a value indicating whether [supports external stream]. #[serde(rename = "SupportsExternalStream")] pub supports_external_stream: bool, + /// Gets or sets the filename. #[serde(rename = "Path")] pub path: Option, + /// Gets or sets the pixel format. #[serde(rename = "PixelFormat")] pub pixel_format: Option, + /// Gets or sets the level. #[serde(rename = "Level")] pub level: Option, + /// Gets or sets whether this instance is anamorphic. #[serde(rename = "IsAnamorphic")] pub is_anamorphic: Option, } +/// Media Update Info Dto. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct MediaUpdateInfoDto { + /// Gets or sets the list of updates. #[serde(rename = "Updates")] pub updates: Vec, } +/// The media update info path. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct MediaUpdateInfoPathDto { + /// Gets or sets media path. #[serde(rename = "Path")] pub path: Option, + /** Gets or sets media update type. +Created, Modified, Deleted.*/ #[serde(rename = "UpdateType")] pub update_type: Option, } @@ -1999,6 +2699,7 @@ pub struct MetadataEditorInfo { #[serde(rename = "ContentTypeOptions")] pub content_type_options: Vec, } +/// Class MetadataOptions. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct MetadataOptions { #[serde(rename = "ItemType")] @@ -2016,27 +2717,37 @@ pub struct MetadataOptions { #[serde(rename = "ImageFetcherOrder")] pub image_fetcher_order: Option>, } +/// Class MovePlaylistItemRequestDto. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct MovePlaylistItemRequestDto { + /// Gets or sets the playlist identifier of the item. #[serde(rename = "PlaylistItemId")] - pub playlist_item_id: String, + pub playlist_item_id: uuid::Uuid, + /// Gets or sets the new position. #[serde(rename = "NewIndex")] pub new_index: i32, } #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct MovieInfo { + /// Gets or sets the name. #[serde(rename = "Name")] pub name: Option, + /// Gets or sets the original title. #[serde(rename = "OriginalTitle")] pub original_title: Option, + /// Gets or sets the path. #[serde(rename = "Path")] pub path: Option, + /// Gets or sets the metadata language. #[serde(rename = "MetadataLanguage")] pub metadata_language: Option, + /// Gets or sets the metadata country code. #[serde(rename = "MetadataCountryCode")] pub metadata_country_code: Option, + /// Gets or sets the provider ids. #[serde(rename = "ProviderIds")] pub provider_ids: Option>>, + /// Gets or sets the year. #[serde(rename = "Year")] pub year: Option, #[serde(rename = "IndexNumber")] @@ -2044,7 +2755,7 @@ pub struct MovieInfo { #[serde(rename = "ParentIndexNumber")] pub parent_index_number: Option, #[serde(rename = "PremiereDate")] - pub premiere_date: Option, + pub premiere_date: Option, #[serde(rename = "IsAutomated")] pub is_automated: bool, } @@ -2053,26 +2764,35 @@ pub struct MovieInfoRemoteSearchQuery { #[serde(rename = "SearchInfo")] pub search_info: Option, #[serde(rename = "ItemId")] - pub item_id: String, + pub item_id: uuid::Uuid, + /// Gets or sets the provider name to search within if set. #[serde(rename = "SearchProviderName")] pub search_provider_name: Option, + /// Gets or sets a value indicating whether disabled providers should be included. #[serde(rename = "IncludeDisabledProviders")] pub include_disabled_providers: bool, } #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct MusicVideoInfo { + /// Gets or sets the name. #[serde(rename = "Name")] pub name: Option, + /// Gets or sets the original title. #[serde(rename = "OriginalTitle")] pub original_title: Option, + /// Gets or sets the path. #[serde(rename = "Path")] pub path: Option, + /// Gets or sets the metadata language. #[serde(rename = "MetadataLanguage")] pub metadata_language: Option, + /// Gets or sets the metadata country code. #[serde(rename = "MetadataCountryCode")] pub metadata_country_code: Option, + /// Gets or sets the provider ids. #[serde(rename = "ProviderIds")] pub provider_ids: Option>>, + /// Gets or sets the year. #[serde(rename = "Year")] pub year: Option, #[serde(rename = "IndexNumber")] @@ -2080,7 +2800,7 @@ pub struct MusicVideoInfo { #[serde(rename = "ParentIndexNumber")] pub parent_index_number: Option, #[serde(rename = "PremiereDate")] - pub premiere_date: Option, + pub premiere_date: Option, #[serde(rename = "IsAutomated")] pub is_automated: bool, #[serde(rename = "Artists")] @@ -2091,9 +2811,11 @@ pub struct MusicVideoInfoRemoteSearchQuery { #[serde(rename = "SearchInfo")] pub search_info: Option, #[serde(rename = "ItemId")] - pub item_id: String, + pub item_id: uuid::Uuid, + /// Gets or sets the provider name to search within if set. #[serde(rename = "SearchProviderName")] pub search_provider_name: Option, + /// Gets or sets a value indicating whether disabled providers should be included. #[serde(rename = "IncludeDisabledProviders")] pub include_disabled_providers: bool, } @@ -2102,166 +2824,245 @@ pub struct NameGuidPair { #[serde(rename = "Name")] pub name: Option, #[serde(rename = "Id")] - pub id: String, + pub id: uuid::Uuid, } #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct NameIdPair { + /// Gets or sets the name. #[serde(rename = "Name")] pub name: Option, + /// Gets or sets the identifier. #[serde(rename = "Id")] pub id: Option, } #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct NameValuePair { + /// Gets or sets the name. #[serde(rename = "Name")] pub name: Option, + /// Gets or sets the value. #[serde(rename = "Value")] pub value: Option, } +/// Defines the MediaBrowser.Common.Net.NetworkConfiguration. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct NetworkConfiguration { + /// Gets or sets a value used to specify the URL prefix that your Jellyfin instance can be accessed at. #[serde(rename = "BaseUrl")] pub base_url: String, + /// Gets or sets a value indicating whether to use HTTPS. #[serde(rename = "EnableHttps")] pub enable_https: bool, + /// Gets or sets a value indicating whether the server should force connections over HTTPS. #[serde(rename = "RequireHttps")] pub require_https: bool, + /// Gets or sets the filesystem path of an X.509 certificate to use for SSL. #[serde(rename = "CertificatePath")] pub certificate_path: String, + /// Gets or sets the password required to access the X.509 certificate data in the file specified by MediaBrowser.Common.Net.NetworkConfiguration.CertificatePath. #[serde(rename = "CertificatePassword")] pub certificate_password: String, + /// Gets or sets the internal HTTP server port. #[serde(rename = "InternalHttpPort")] pub internal_http_port: i32, + /// Gets or sets the internal HTTPS server port. #[serde(rename = "InternalHttpsPort")] pub internal_https_port: i32, + /// Gets or sets the public HTTP port. #[serde(rename = "PublicHttpPort")] pub public_http_port: i32, + /// Gets or sets the public HTTPS port. #[serde(rename = "PublicHttpsPort")] pub public_https_port: i32, + /// Gets or sets a value indicating whether Autodiscovery is enabled. #[serde(rename = "AutoDiscovery")] pub auto_discovery: bool, + /// Gets or sets a value indicating whether to enable automatic port forwarding. #[serde(rename = "EnableUPnP")] pub enable_u_pn_p: bool, + /// Gets or sets a value indicating whether IPv6 is enabled. #[serde(rename = "EnableIPv4")] pub enable_i_pv4: bool, + /// Gets or sets a value indicating whether IPv6 is enabled. #[serde(rename = "EnableIPv6")] pub enable_i_pv6: bool, + /// Gets or sets a value indicating whether access from outside of the LAN is permitted. #[serde(rename = "EnableRemoteAccess")] pub enable_remote_access: bool, + /// Gets or sets the subnets that are deemed to make up the LAN. #[serde(rename = "LocalNetworkSubnets")] pub local_network_subnets: Vec, + /// Gets or sets the interface addresses which Jellyfin will bind to. If empty, all interfaces will be used. #[serde(rename = "LocalNetworkAddresses")] pub local_network_addresses: Vec, + /// Gets or sets the known proxies. #[serde(rename = "KnownProxies")] pub known_proxies: Vec, + /// Gets or sets a value indicating whether address names that match MediaBrowser.Common.Net.NetworkConfiguration.VirtualInterfaceNames should be ignored for the purposes of binding. #[serde(rename = "IgnoreVirtualInterfaces")] pub ignore_virtual_interfaces: bool, + /// Gets or sets a value indicating the interface name prefixes that should be ignored. The list can be comma separated and values are case-insensitive. . #[serde(rename = "VirtualInterfaceNames")] pub virtual_interface_names: Vec, + /// Gets or sets a value indicating whether the published server uri is based on information in HTTP requests. #[serde(rename = "EnablePublishedServerUriByRequest")] pub enable_published_server_uri_by_request: bool, + /** Gets or sets the PublishedServerUriBySubnet +Gets or sets PublishedServerUri to advertise for specific subnets.*/ #[serde(rename = "PublishedServerUriBySubnet")] pub published_server_uri_by_subnet: Vec, + /// Gets or sets the filter for remote IP connectivity. Used in conjunction with . #[serde(rename = "RemoteIPFilter")] pub remote_ip_filter: Vec, + /// Gets or sets a value indicating whether contains a blacklist or a whitelist. Default is a whitelist. #[serde(rename = "IsRemoteIPFilterBlacklist")] pub is_remote_ip_filter_blacklist: bool, } +/// Class NewGroupRequestDto. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct NewGroupRequestDto { + /// Gets or sets the group name. #[serde(rename = "GroupName")] pub group_name: String, } +/// Class NextItemRequestDto. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct NextItemRequestDto { + /// Gets or sets the playing item identifier. #[serde(rename = "PlaylistItemId")] - pub playlist_item_id: String, + pub playlist_item_id: uuid::Uuid, } +/// Open live stream dto. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct OpenLiveStreamDto { + /// Gets or sets the open token. #[serde(rename = "OpenToken")] pub open_token: Option, + /// Gets or sets the user id. #[serde(rename = "UserId")] - pub user_id: Option, + pub user_id: Option, + /// Gets or sets the play session id. #[serde(rename = "PlaySessionId")] pub play_session_id: Option, + /// Gets or sets the max streaming bitrate. #[serde(rename = "MaxStreamingBitrate")] pub max_streaming_bitrate: Option, + /// Gets or sets the start time in ticks. #[serde(rename = "StartTimeTicks")] pub start_time_ticks: Option, + /// Gets or sets the audio stream index. #[serde(rename = "AudioStreamIndex")] pub audio_stream_index: Option, + /// Gets or sets the subtitle stream index. #[serde(rename = "SubtitleStreamIndex")] pub subtitle_stream_index: Option, + /// Gets or sets the max audio channels. #[serde(rename = "MaxAudioChannels")] pub max_audio_channels: Option, + /// Gets or sets the item id. #[serde(rename = "ItemId")] - pub item_id: Option, + pub item_id: Option, + /// Gets or sets a value indicating whether to enable direct play. #[serde(rename = "EnableDirectPlay")] pub enable_direct_play: Option, + /// Gets or sets a value indicating whether to enale direct stream. #[serde(rename = "EnableDirectStream")] pub enable_direct_stream: Option, + /// Gets or sets a value indicating whether always burn in subtitles when transcoding. #[serde(rename = "AlwaysBurnInSubtitleWhenTranscoding")] pub always_burn_in_subtitle_when_transcoding: Option, + /** A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which content a certain device is able to play. +
+Specifically, it defines the supported containers and +codecs (video and/or audio, including codec profiles and levels) +the device is able to direct play (without transcoding or remuxing), +as well as which containers/codecs to transcode to in case it isn't.*/ #[serde(rename = "DeviceProfile")] pub device_profile: Option, + /// Gets or sets the device play protocols. #[serde(rename = "DirectPlayProtocols")] pub direct_play_protocols: Vec, } +/// Keep alive websocket messages. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct OutboundKeepAliveMessage { + /// Gets or sets the message id. #[serde(rename = "MessageId")] - pub message_id: String, + pub message_id: uuid::Uuid, + /// The different kinds of messages that are used in the WebSocket api. #[serde(rename = "MessageType")] pub message_type: SessionMessageType, } +/// Class PackageInfo. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct PackageInfo { + /// Gets or sets the name. #[serde(rename = "name")] pub name: String, + /// Gets or sets a long description of the plugin containing features or helpful explanations. #[serde(rename = "description")] pub description: String, + /// Gets or sets a short overview of what the plugin does. #[serde(rename = "overview")] pub overview: String, + /// Gets or sets the owner. #[serde(rename = "owner")] pub owner: String, + /// Gets or sets the category. #[serde(rename = "category")] pub category: String, + /** Gets or sets the guid of the assembly associated with this plugin. +This is used to identify the proper item for automatic updates.*/ #[serde(rename = "guid")] - pub guid: String, + pub guid: uuid::Uuid, + /// Gets or sets the versions. #[serde(rename = "versions")] pub versions: Vec, + /// Gets or sets the image url for the package. #[serde(rename = "imageUrl")] pub image_url: Option, } +/// Class ParentalRating. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct ParentalRating { + /// Gets or sets the name. #[serde(rename = "Name")] pub name: Option, + /// Gets or sets the value. #[serde(rename = "Value")] pub value: Option, } +/// Defines the MediaBrowser.Model.Configuration.PathSubstitution. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct PathSubstitution { + /// Gets or sets the value to substitute. #[serde(rename = "From")] pub from: String, + /// Gets or sets the value to substitution with. #[serde(rename = "To")] pub to: String, } #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct PersonLookupInfo { + /// Gets or sets the name. #[serde(rename = "Name")] pub name: Option, + /// Gets or sets the original title. #[serde(rename = "OriginalTitle")] pub original_title: Option, + /// Gets or sets the path. #[serde(rename = "Path")] pub path: Option, + /// Gets or sets the metadata language. #[serde(rename = "MetadataLanguage")] pub metadata_language: Option, + /// Gets or sets the metadata country code. #[serde(rename = "MetadataCountryCode")] pub metadata_country_code: Option, + /// Gets or sets the provider ids. #[serde(rename = "ProviderIds")] pub provider_ids: Option>>, + /// Gets or sets the year. #[serde(rename = "Year")] pub year: Option, #[serde(rename = "IndexNumber")] @@ -2269,7 +3070,7 @@ pub struct PersonLookupInfo { #[serde(rename = "ParentIndexNumber")] pub parent_index_number: Option, #[serde(rename = "PremiereDate")] - pub premiere_date: Option, + pub premiere_date: Option, #[serde(rename = "IsAutomated")] pub is_automated: bool, } @@ -2278,106 +3079,155 @@ pub struct PersonLookupInfoRemoteSearchQuery { #[serde(rename = "SearchInfo")] pub search_info: Option, #[serde(rename = "ItemId")] - pub item_id: String, + pub item_id: uuid::Uuid, + /// Gets or sets the provider name to search within if set. #[serde(rename = "SearchProviderName")] pub search_provider_name: Option, + /// Gets or sets a value indicating whether disabled providers should be included. #[serde(rename = "IncludeDisabledProviders")] pub include_disabled_providers: bool, } +/// Class PingRequestDto. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct PingRequestDto { + /// Gets or sets the ping time. #[serde(rename = "Ping")] pub ping: i64, } #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct PinRedeemResult { + /// Gets or sets a value indicating whether this MediaBrowser.Model.Users.PinRedeemResult is success. #[serde(rename = "Success")] pub success: bool, + /// Gets or sets the users reset. #[serde(rename = "UsersReset")] pub users_reset: Vec, } +/// Plabyback info dto. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct PlaybackInfoDto { + /// Gets or sets the playback userId. #[serde(rename = "UserId")] - pub user_id: Option, + pub user_id: Option, + /// Gets or sets the max streaming bitrate. #[serde(rename = "MaxStreamingBitrate")] pub max_streaming_bitrate: Option, + /// Gets or sets the start time in ticks. #[serde(rename = "StartTimeTicks")] pub start_time_ticks: Option, + /// Gets or sets the audio stream index. #[serde(rename = "AudioStreamIndex")] pub audio_stream_index: Option, + /// Gets or sets the subtitle stream index. #[serde(rename = "SubtitleStreamIndex")] pub subtitle_stream_index: Option, + /// Gets or sets the max audio channels. #[serde(rename = "MaxAudioChannels")] pub max_audio_channels: Option, + /// Gets or sets the media source id. #[serde(rename = "MediaSourceId")] pub media_source_id: Option, + /// Gets or sets the live stream id. #[serde(rename = "LiveStreamId")] pub live_stream_id: Option, + /** A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which content a certain device is able to play. +
+Specifically, it defines the supported containers and +codecs (video and/or audio, including codec profiles and levels) +the device is able to direct play (without transcoding or remuxing), +as well as which containers/codecs to transcode to in case it isn't.*/ #[serde(rename = "DeviceProfile")] pub device_profile: Option, + /// Gets or sets a value indicating whether to enable direct play. #[serde(rename = "EnableDirectPlay")] pub enable_direct_play: Option, + /// Gets or sets a value indicating whether to enable direct stream. #[serde(rename = "EnableDirectStream")] pub enable_direct_stream: Option, + /// Gets or sets a value indicating whether to enable transcoding. #[serde(rename = "EnableTranscoding")] pub enable_transcoding: Option, + /// Gets or sets a value indicating whether to enable video stream copy. #[serde(rename = "AllowVideoStreamCopy")] pub allow_video_stream_copy: Option, + /// Gets or sets a value indicating whether to allow audio stream copy. #[serde(rename = "AllowAudioStreamCopy")] pub allow_audio_stream_copy: Option, + /// Gets or sets a value indicating whether to auto open the live stream. #[serde(rename = "AutoOpenLiveStream")] pub auto_open_live_stream: Option, + /// Gets or sets a value indicating whether always burn in subtitles when transcoding. #[serde(rename = "AlwaysBurnInSubtitleWhenTranscoding")] pub always_burn_in_subtitle_when_transcoding: Option, } +/// Class PlaybackInfoResponse. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct PlaybackInfoResponse { + /// Gets or sets the media sources. #[serde(rename = "MediaSources")] pub media_sources: Vec, + /// Gets or sets the play session identifier. #[serde(rename = "PlaySessionId")] pub play_session_id: Option, + /// Gets or sets the error code. #[serde(rename = "ErrorCode")] pub error_code: Option, } +/// Class PlaybackProgressInfo. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct PlaybackProgressInfo { + /// Gets or sets a value indicating whether this instance can seek. #[serde(rename = "CanSeek")] pub can_seek: bool, + /// Gets or sets the item. #[serde(rename = "Item")] pub item: Option, + /// Gets or sets the item identifier. #[serde(rename = "ItemId")] - pub item_id: String, + pub item_id: uuid::Uuid, + /// Gets or sets the session id. #[serde(rename = "SessionId")] pub session_id: Option, + /// Gets or sets the media version identifier. #[serde(rename = "MediaSourceId")] pub media_source_id: Option, + /// Gets or sets the index of the audio stream. #[serde(rename = "AudioStreamIndex")] pub audio_stream_index: Option, + /// Gets or sets the index of the subtitle stream. #[serde(rename = "SubtitleStreamIndex")] pub subtitle_stream_index: Option, + /// Gets or sets a value indicating whether this instance is paused. #[serde(rename = "IsPaused")] pub is_paused: bool, + /// Gets or sets a value indicating whether this instance is muted. #[serde(rename = "IsMuted")] pub is_muted: bool, + /// Gets or sets the position ticks. #[serde(rename = "PositionTicks")] pub position_ticks: Option, #[serde(rename = "PlaybackStartTimeTicks")] pub playback_start_time_ticks: Option, + /// Gets or sets the volume level. #[serde(rename = "VolumeLevel")] pub volume_level: Option, #[serde(rename = "Brightness")] pub brightness: Option, #[serde(rename = "AspectRatio")] pub aspect_ratio: Option, + /// Gets or sets the play method. #[serde(rename = "PlayMethod")] pub play_method: PlayMethod, + /// Gets or sets the live stream identifier. #[serde(rename = "LiveStreamId")] pub live_stream_id: Option, + /// Gets or sets the play session identifier. #[serde(rename = "PlaySessionId")] pub play_session_id: Option, + /// Gets or sets the repeat mode. #[serde(rename = "RepeatMode")] pub repeat_mode: RepeatMode, + /// Gets or sets the playback order. #[serde(rename = "PlaybackOrder")] pub playback_order: PlaybackOrder, #[serde(rename = "NowPlayingQueue")] @@ -2385,44 +3235,61 @@ pub struct PlaybackProgressInfo { #[serde(rename = "PlaylistItemId")] pub playlist_item_id: Option, } +/// Class PlaybackStartInfo. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct PlaybackStartInfo { + /// Gets or sets a value indicating whether this instance can seek. #[serde(rename = "CanSeek")] pub can_seek: bool, + /// Gets or sets the item. #[serde(rename = "Item")] pub item: Option, + /// Gets or sets the item identifier. #[serde(rename = "ItemId")] - pub item_id: String, + pub item_id: uuid::Uuid, + /// Gets or sets the session id. #[serde(rename = "SessionId")] pub session_id: Option, + /// Gets or sets the media version identifier. #[serde(rename = "MediaSourceId")] pub media_source_id: Option, + /// Gets or sets the index of the audio stream. #[serde(rename = "AudioStreamIndex")] pub audio_stream_index: Option, + /// Gets or sets the index of the subtitle stream. #[serde(rename = "SubtitleStreamIndex")] pub subtitle_stream_index: Option, + /// Gets or sets a value indicating whether this instance is paused. #[serde(rename = "IsPaused")] pub is_paused: bool, + /// Gets or sets a value indicating whether this instance is muted. #[serde(rename = "IsMuted")] pub is_muted: bool, + /// Gets or sets the position ticks. #[serde(rename = "PositionTicks")] pub position_ticks: Option, #[serde(rename = "PlaybackStartTimeTicks")] pub playback_start_time_ticks: Option, + /// Gets or sets the volume level. #[serde(rename = "VolumeLevel")] pub volume_level: Option, #[serde(rename = "Brightness")] pub brightness: Option, #[serde(rename = "AspectRatio")] pub aspect_ratio: Option, + /// Gets or sets the play method. #[serde(rename = "PlayMethod")] pub play_method: PlayMethod, + /// Gets or sets the live stream identifier. #[serde(rename = "LiveStreamId")] pub live_stream_id: Option, + /// Gets or sets the play session identifier. #[serde(rename = "PlaySessionId")] pub play_session_id: Option, + /// Gets or sets the repeat mode. #[serde(rename = "RepeatMode")] pub repeat_mode: RepeatMode, + /// Gets or sets the playback order. #[serde(rename = "PlaybackOrder")] pub playback_order: PlaybackOrder, #[serde(rename = "NowPlayingQueue")] @@ -2430,22 +3297,31 @@ pub struct PlaybackStartInfo { #[serde(rename = "PlaylistItemId")] pub playlist_item_id: Option, } +/// Class PlaybackStopInfo. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct PlaybackStopInfo { + /// Gets or sets the item. #[serde(rename = "Item")] pub item: Option, + /// Gets or sets the item identifier. #[serde(rename = "ItemId")] - pub item_id: String, + pub item_id: uuid::Uuid, + /// Gets or sets the session id. #[serde(rename = "SessionId")] pub session_id: Option, + /// Gets or sets the media version identifier. #[serde(rename = "MediaSourceId")] pub media_source_id: Option, + /// Gets or sets the position ticks. #[serde(rename = "PositionTicks")] pub position_ticks: Option, + /// Gets or sets the live stream identifier. #[serde(rename = "LiveStreamId")] pub live_stream_id: Option, + /// Gets or sets the play session identifier. #[serde(rename = "PlaySessionId")] pub play_session_id: Option, + /// Gets or sets a value indicating whether this MediaBrowser.Model.Session.PlaybackStopInfo is failed. #[serde(rename = "Failed")] pub failed: bool, #[serde(rename = "NextMediaType")] @@ -2457,28 +3333,40 @@ pub struct PlaybackStopInfo { } #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct PlayerStateInfo { + /// Gets or sets the now playing position ticks. #[serde(rename = "PositionTicks")] pub position_ticks: Option, + /// Gets or sets a value indicating whether this instance can seek. #[serde(rename = "CanSeek")] pub can_seek: bool, + /// Gets or sets a value indicating whether this instance is paused. #[serde(rename = "IsPaused")] pub is_paused: bool, + /// Gets or sets a value indicating whether this instance is muted. #[serde(rename = "IsMuted")] pub is_muted: bool, + /// Gets or sets the volume level. #[serde(rename = "VolumeLevel")] pub volume_level: Option, + /// Gets or sets the index of the now playing audio stream. #[serde(rename = "AudioStreamIndex")] pub audio_stream_index: Option, + /// Gets or sets the index of the now playing subtitle stream. #[serde(rename = "SubtitleStreamIndex")] pub subtitle_stream_index: Option, + /// Gets or sets the now playing media version identifier. #[serde(rename = "MediaSourceId")] pub media_source_id: Option, + /// Gets or sets the play method. #[serde(rename = "PlayMethod")] pub play_method: Option, + /// Gets or sets the repeat mode. #[serde(rename = "RepeatMode")] pub repeat_mode: RepeatMode, + /// Gets or sets the playback order. #[serde(rename = "PlaybackOrder")] pub playback_order: PlaybackOrder, + /// Gets or sets the now playing live stream identifier. #[serde(rename = "LiveStreamId")] pub live_stream_id: Option, } @@ -2487,69 +3375,98 @@ pub struct PlaylistCreationResult { #[serde(rename = "Id")] pub id: String, } +/// DTO for playlists. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct PlaylistDto { + /// Gets or sets a value indicating whether the playlist is publicly readable. #[serde(rename = "OpenAccess")] pub open_access: bool, + /// Gets or sets the share permissions. #[serde(rename = "Shares")] pub shares: Vec, + /// Gets or sets the item ids. #[serde(rename = "ItemIds")] - pub item_ids: Vec, + pub item_ids: Vec, } +/// Class to hold data on user permissions for playlists. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct PlaylistUserPermissions { + /// Gets or sets the user id. #[serde(rename = "UserId")] - pub user_id: String, + pub user_id: uuid::Uuid, + /// Gets or sets a value indicating whether the user has edit permissions. #[serde(rename = "CanEdit")] pub can_edit: bool, } +/// Play command websocket message. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct PlayMessage { + /// Class PlayRequest. #[serde(rename = "Data")] pub data: Option, + /// Gets or sets the message id. #[serde(rename = "MessageId")] - pub message_id: String, + pub message_id: uuid::Uuid, + /// The different kinds of messages that are used in the WebSocket api. #[serde(rename = "MessageType")] pub message_type: SessionMessageType, } +/// Class PlayQueueUpdate. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct PlayQueueUpdate { + /// Gets the request type that originated this update. #[serde(rename = "Reason")] pub reason: PlayQueueUpdateReason, + /// Gets the UTC time of the last change to the playing queue. #[serde(rename = "LastUpdate")] - pub last_update: String, + pub last_update: jiff::Zoned, + /// Gets the playlist. #[serde(rename = "Playlist")] pub playlist: Vec, + /// Gets the playing item index in the playlist. #[serde(rename = "PlayingItemIndex")] pub playing_item_index: i32, + /// Gets the start position ticks. #[serde(rename = "StartPositionTicks")] pub start_position_ticks: i64, + /// Gets a value indicating whether the current item is playing. #[serde(rename = "IsPlaying")] pub is_playing: bool, + /// Gets the shuffle mode. #[serde(rename = "ShuffleMode")] pub shuffle_mode: GroupShuffleMode, + /// Gets the repeat mode. #[serde(rename = "RepeatMode")] pub repeat_mode: GroupRepeatMode, } +/// Class GroupUpdate. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct PlayQueueUpdateGroupUpdate { + /// Gets the group identifier. #[serde(rename = "GroupId")] - pub group_id: String, + pub group_id: uuid::Uuid, + /// Gets the update type. #[serde(rename = "Type")] pub _type: GroupUpdateType, + /// Gets the update data. #[serde(rename = "Data")] pub data: PlayQueueUpdate, } +/// Class PlayRequest. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct PlayRequest { + /// Gets or sets the item ids. #[serde(rename = "ItemIds")] - pub item_ids: Option>, + pub item_ids: Option>, + /// Gets or sets the start position ticks that the first item should be played at. #[serde(rename = "StartPositionTicks")] pub start_position_ticks: Option, + /// Gets or sets the play command. #[serde(rename = "PlayCommand")] pub play_command: PlayCommand, + /// Gets or sets the controlling user identifier. #[serde(rename = "ControllingUserId")] - pub controlling_user_id: String, + pub controlling_user_id: uuid::Uuid, #[serde(rename = "SubtitleStreamIndex")] pub subtitle_stream_index: Option, #[serde(rename = "AudioStreamIndex")] @@ -2559,101 +3476,142 @@ pub struct PlayRequest { #[serde(rename = "StartIndex")] pub start_index: Option, } +/// Class PlayRequestDto. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct PlayRequestDto { + /// Gets or sets the playing queue. #[serde(rename = "PlayingQueue")] - pub playing_queue: Vec, + pub playing_queue: Vec, + /// Gets or sets the position of the playing item in the queue. #[serde(rename = "PlayingItemPosition")] pub playing_item_position: i32, + /// Gets or sets the start position ticks. #[serde(rename = "StartPositionTicks")] pub start_position_ticks: i64, } +/// Playstate message. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct PlaystateMessage { + /// Gets or sets the data. #[serde(rename = "Data")] pub data: Option, + /// Gets or sets the message id. #[serde(rename = "MessageId")] - pub message_id: String, + pub message_id: uuid::Uuid, + /// The different kinds of messages that are used in the WebSocket api. #[serde(rename = "MessageType")] pub message_type: SessionMessageType, } #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct PlaystateRequest { + /// Enum PlaystateCommand. #[serde(rename = "Command")] pub command: PlaystateCommand, #[serde(rename = "SeekPositionTicks")] pub seek_position_ticks: Option, + /// Gets or sets the controlling user identifier. #[serde(rename = "ControllingUserId")] pub controlling_user_id: Option, } +/// This is a serializable stub class that is used by the api to provide information about installed plugins. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct PluginInfo { + /// Gets or sets the name. #[serde(rename = "Name")] pub name: String, + /// Gets or sets the version. #[serde(rename = "Version")] pub version: String, + /// Gets or sets the name of the configuration file. #[serde(rename = "ConfigurationFileName")] pub configuration_file_name: Option, + /// Gets or sets the description. #[serde(rename = "Description")] pub description: String, + /// Gets or sets the unique id. #[serde(rename = "Id")] - pub id: String, + pub id: uuid::Uuid, + /// Gets or sets a value indicating whether the plugin can be uninstalled. #[serde(rename = "CanUninstall")] pub can_uninstall: bool, + /// Gets or sets a value indicating whether this plugin has a valid image. #[serde(rename = "HasImage")] pub has_image: bool, + /// Gets or sets a value indicating the status of the plugin. #[serde(rename = "Status")] pub status: PluginStatus, } +/// Plugin installation cancelled message. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct PluginInstallationCancelledMessage { + /// Class InstallationInfo. #[serde(rename = "Data")] pub data: Option, + /// Gets or sets the message id. #[serde(rename = "MessageId")] - pub message_id: String, + pub message_id: uuid::Uuid, + /// The different kinds of messages that are used in the WebSocket api. #[serde(rename = "MessageType")] pub message_type: SessionMessageType, } +/// Plugin installation completed message. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct PluginInstallationCompletedMessage { + /// Class InstallationInfo. #[serde(rename = "Data")] pub data: Option, + /// Gets or sets the message id. #[serde(rename = "MessageId")] - pub message_id: String, + pub message_id: uuid::Uuid, + /// The different kinds of messages that are used in the WebSocket api. #[serde(rename = "MessageType")] pub message_type: SessionMessageType, } +/// Plugin installation failed message. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct PluginInstallationFailedMessage { + /// Class InstallationInfo. #[serde(rename = "Data")] pub data: Option, + /// Gets or sets the message id. #[serde(rename = "MessageId")] - pub message_id: String, + pub message_id: uuid::Uuid, + /// The different kinds of messages that are used in the WebSocket api. #[serde(rename = "MessageType")] pub message_type: SessionMessageType, } +/// Package installing message. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct PluginInstallingMessage { + /// Class InstallationInfo. #[serde(rename = "Data")] pub data: Option, + /// Gets or sets the message id. #[serde(rename = "MessageId")] - pub message_id: String, + pub message_id: uuid::Uuid, + /// The different kinds of messages that are used in the WebSocket api. #[serde(rename = "MessageType")] pub message_type: SessionMessageType, } +/// Plugin uninstalled message. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct PluginUninstalledMessage { + /// This is a serializable stub class that is used by the api to provide information about installed plugins. #[serde(rename = "Data")] pub data: Option, + /// Gets or sets the message id. #[serde(rename = "MessageId")] - pub message_id: String, + pub message_id: uuid::Uuid, + /// The different kinds of messages that are used in the WebSocket api. #[serde(rename = "MessageType")] pub message_type: SessionMessageType, } +/// Class PreviousItemRequestDto. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct PreviousItemRequestDto { + /// Gets or sets the playing item identifier. #[serde(rename = "PlaylistItemId")] - pub playlist_item_id: String, + pub playlist_item_id: uuid::Uuid, } #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct ProblemDetails { @@ -2681,18 +3639,25 @@ pub struct ProfileCondition { } #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct PublicSystemInfo { + /// Gets or sets the local address. #[serde(rename = "LocalAddress")] pub local_address: Option, + /// Gets or sets the name of the server. #[serde(rename = "ServerName")] pub server_name: Option, + /// Gets or sets the server version. #[serde(rename = "Version")] pub version: Option, + /// Gets or sets the product name. This is the AssemblyProduct name. #[serde(rename = "ProductName")] pub product_name: Option, + /// Gets or sets the operating system. #[serde(rename = "OperatingSystem")] pub operating_system: Option, + /// Gets or sets the id. #[serde(rename = "Id")] pub id: Option, + /// Gets or sets a value indicating whether the startup wizard is completed. #[serde(rename = "StartupWizardCompleted")] pub startup_wizard_completed: Option, } @@ -2717,51 +3682,70 @@ pub struct QueryFiltersLegacy { #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct QueueItem { #[serde(rename = "Id")] - pub id: String, + pub id: uuid::Uuid, #[serde(rename = "PlaylistItemId")] pub playlist_item_id: Option, } +/// Class QueueRequestDto. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct QueueRequestDto { + /// Gets or sets the items to enqueue. #[serde(rename = "ItemIds")] - pub item_ids: Vec, + pub item_ids: Vec, + /// Enum GroupQueueMode. #[serde(rename = "Mode")] pub mode: GroupQueueMode, } +/// The quick connect request body. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct QuickConnectDto { + /// Gets or sets the quick connect secret. #[serde(rename = "Secret")] pub secret: String, } +/// Stores the state of an quick connect request. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct QuickConnectResult { + /// Gets or sets a value indicating whether this request is authorized. #[serde(rename = "Authenticated")] pub authenticated: bool, + /// Gets the secret value used to uniquely identify this request. Can be used to retrieve authentication information. #[serde(rename = "Secret")] pub secret: String, + /// Gets the user facing code used so the user can quickly differentiate this request from others. #[serde(rename = "Code")] pub code: String, + /// Gets the requesting device id. #[serde(rename = "DeviceId")] pub device_id: String, + /// Gets the requesting device name. #[serde(rename = "DeviceName")] pub device_name: String, + /// Gets the requesting app name. #[serde(rename = "AppName")] pub app_name: String, + /// Gets the requesting app version. #[serde(rename = "AppVersion")] pub app_version: String, + /// Gets or sets the DateTime that this request was created. #[serde(rename = "DateAdded")] - pub date_added: String, + pub date_added: jiff::Zoned, } +/// Class ReadyRequest. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct ReadyRequestDto { + /// Gets or sets when the request has been made by the client. #[serde(rename = "When")] - pub when: String, + pub when: jiff::Zoned, + /// Gets or sets the position ticks. #[serde(rename = "PositionTicks")] pub position_ticks: i64, + /// Gets or sets a value indicating whether the client playback is unpaused. #[serde(rename = "IsPlaying")] pub is_playing: bool, + /// Gets or sets the playlist item identifier of the playing item. #[serde(rename = "PlaylistItemId")] - pub playlist_item_id: String, + pub playlist_item_id: uuid::Uuid, } #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct RecommendationDto { @@ -2772,64 +3756,90 @@ pub struct RecommendationDto { #[serde(rename = "BaselineItemName")] pub baseline_item_name: Option, #[serde(rename = "CategoryId")] - pub category_id: String, + pub category_id: uuid::Uuid, } +/// Refresh progress message. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct RefreshProgressMessage { + /// Gets or sets the data. #[serde(rename = "Data")] pub data: Option>>, + /// Gets or sets the message id. #[serde(rename = "MessageId")] - pub message_id: String, + pub message_id: uuid::Uuid, + /// The different kinds of messages that are used in the WebSocket api. #[serde(rename = "MessageType")] pub message_type: SessionMessageType, } +/// Class RemoteImageInfo. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct RemoteImageInfo { + /// Gets or sets the name of the provider. #[serde(rename = "ProviderName")] pub provider_name: Option, + /// Gets or sets the URL. #[serde(rename = "Url")] pub url: Option, + /// Gets or sets a url used for previewing a smaller version. #[serde(rename = "ThumbnailUrl")] pub thumbnail_url: Option, + /// Gets or sets the height. #[serde(rename = "Height")] pub height: Option, + /// Gets or sets the width. #[serde(rename = "Width")] pub width: Option, + /// Gets or sets the community rating. #[serde(rename = "CommunityRating")] pub community_rating: Option, + /// Gets or sets the vote count. #[serde(rename = "VoteCount")] pub vote_count: Option, + /// Gets or sets the language. #[serde(rename = "Language")] pub language: Option, + /// Gets or sets the type. #[serde(rename = "Type")] pub _type: ImageType, + /// Gets or sets the type of the rating. #[serde(rename = "RatingType")] pub rating_type: RatingType, } +/// Class RemoteImageResult. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct RemoteImageResult { + /// Gets or sets the images. #[serde(rename = "Images")] pub images: Option>, + /// Gets or sets the total record count. #[serde(rename = "TotalRecordCount")] pub total_record_count: i32, + /// Gets or sets the providers. #[serde(rename = "Providers")] pub providers: Option>, } +/// The remote lyric info dto. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct RemoteLyricInfoDto { + /// Gets or sets the id for the lyric. #[serde(rename = "Id")] pub id: String, + /// Gets the provider name. #[serde(rename = "ProviderName")] pub provider_name: String, + /// Gets the lyrics. #[serde(rename = "Lyrics")] pub lyrics: LyricDto, } #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct RemoteSearchResult { + /// Gets or sets the name. #[serde(rename = "Name")] pub name: Option, + /// Gets or sets the provider ids. #[serde(rename = "ProviderIds")] pub provider_ids: Option>>, + /// Gets or sets the year. #[serde(rename = "ProductionYear")] pub production_year: Option, #[serde(rename = "IndexNumber")] @@ -2839,7 +3849,7 @@ pub struct RemoteSearchResult { #[serde(rename = "ParentIndexNumber")] pub parent_index_number: Option, #[serde(rename = "PremiereDate")] - pub premiere_date: Option, + pub premiere_date: Option, #[serde(rename = "ImageUrl")] pub image_url: Option, #[serde(rename = "SearchProviderName")] @@ -2868,11 +3878,11 @@ pub struct RemoteSubtitleInfo { #[serde(rename = "Comment")] pub comment: Option, #[serde(rename = "DateCreated")] - pub date_created: Option, + pub date_created: Option, #[serde(rename = "CommunityRating")] - pub community_rating: Option, + pub community_rating: Option, #[serde(rename = "FrameRate")] - pub frame_rate: Option, + pub frame_rate: Option, #[serde(rename = "DownloadCount")] pub download_count: Option, #[serde(rename = "IsHashMatch")] @@ -2889,178 +3899,256 @@ pub struct RemoteSubtitleInfo { #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct RemovedItem { #[serde(rename = "ItemId")] - pub item_id: String, + pub item_id: uuid::Uuid, #[serde(rename = "SeriesId")] - pub series_id: Option, + pub series_id: Option, #[serde(rename = "Season")] pub season: Option, } +/// Query result container. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct RemovedItemQueryResult { + /// Gets or sets the items. #[serde(rename = "Items")] pub items: Vec, + /// Gets or sets the total number of records available. #[serde(rename = "TotalRecordCount")] pub total_record_count: i32, + /// Gets or sets the index of the first record in Items. #[serde(rename = "StartIndex")] pub start_index: i32, } +/// Class RemoveFromPlaylistRequestDto. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct RemoveFromPlaylistRequestDto { + /// Gets or sets the playlist identifiers of the items. Ignored when clearing the playlist. #[serde(rename = "PlaylistItemIds")] - pub playlist_item_ids: Vec, + pub playlist_item_ids: Vec, + /// Gets or sets a value indicating whether the entire playlist should be cleared. #[serde(rename = "ClearPlaylist")] pub clear_playlist: bool, + /// Gets or sets a value indicating whether the playing item should be removed as well. Used only when clearing the playlist. #[serde(rename = "ClearPlayingItem")] pub clear_playing_item: bool, } +/// Class RepositoryInfo. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct RepositoryInfo { + /// Gets or sets the name. #[serde(rename = "Name")] pub name: Option, + /// Gets or sets the URL. #[serde(rename = "Url")] pub url: Option, + /// Gets or sets a value indicating whether the repository is enabled. #[serde(rename = "Enabled")] pub enabled: bool, } +/// Restart required. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct RestartRequiredMessage { + /// Gets or sets the message id. #[serde(rename = "MessageId")] - pub message_id: String, + pub message_id: uuid::Uuid, + /// The different kinds of messages that are used in the WebSocket api. #[serde(rename = "MessageType")] pub message_type: SessionMessageType, } +/// Scheduled task ended message. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct ScheduledTaskEndedMessage { + /// Class TaskExecutionInfo. #[serde(rename = "Data")] pub data: Option, + /// Gets or sets the message id. #[serde(rename = "MessageId")] - pub message_id: String, + pub message_id: uuid::Uuid, + /// The different kinds of messages that are used in the WebSocket api. #[serde(rename = "MessageType")] pub message_type: SessionMessageType, } +/// Scheduled tasks info message. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct ScheduledTasksInfoMessage { + /// Gets or sets the data. #[serde(rename = "Data")] pub data: Option>, + /// Gets or sets the message id. #[serde(rename = "MessageId")] - pub message_id: String, + pub message_id: uuid::Uuid, + /// The different kinds of messages that are used in the WebSocket api. #[serde(rename = "MessageType")] pub message_type: SessionMessageType, } +/** Scheduled tasks info start message. +Data is the timing data encoded as "$initialDelay,$interval" in ms.*/ #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct ScheduledTasksInfoStartMessage { + /// Gets or sets the data. #[serde(rename = "Data")] pub data: Option, + /// The different kinds of messages that are used in the WebSocket api. #[serde(rename = "MessageType")] pub message_type: SessionMessageType, } +/// Scheduled tasks info stop message. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct ScheduledTasksInfoStopMessage { + /// The different kinds of messages that are used in the WebSocket api. #[serde(rename = "MessageType")] pub message_type: SessionMessageType, } +/// Class SearchHintResult. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct SearchHint { + /// Gets or sets the item id. #[serde(rename = "ItemId")] - pub item_id: String, + pub item_id: uuid::Uuid, + /// Gets or sets the item id. #[serde(rename = "Id")] - pub id: String, + pub id: uuid::Uuid, + /// Gets or sets the name. #[serde(rename = "Name")] pub name: String, + /// Gets or sets the matched term. #[serde(rename = "MatchedTerm")] pub matched_term: Option, + /// Gets or sets the index number. #[serde(rename = "IndexNumber")] pub index_number: Option, + /// Gets or sets the production year. #[serde(rename = "ProductionYear")] pub production_year: Option, + /// Gets or sets the parent index number. #[serde(rename = "ParentIndexNumber")] pub parent_index_number: Option, + /// Gets or sets the image tag. #[serde(rename = "PrimaryImageTag")] pub primary_image_tag: Option, + /// Gets or sets the thumb image tag. #[serde(rename = "ThumbImageTag")] pub thumb_image_tag: Option, + /// Gets or sets the thumb image item identifier. #[serde(rename = "ThumbImageItemId")] pub thumb_image_item_id: Option, + /// Gets or sets the backdrop image tag. #[serde(rename = "BackdropImageTag")] pub backdrop_image_tag: Option, + /// Gets or sets the backdrop image item identifier. #[serde(rename = "BackdropImageItemId")] pub backdrop_image_item_id: Option, + /// Gets or sets the type. #[serde(rename = "Type")] pub _type: BaseItemKind, + /// Gets or sets a value indicating whether this instance is folder. #[serde(rename = "IsFolder")] pub is_folder: Option, + /// Gets or sets the run time ticks. #[serde(rename = "RunTimeTicks")] pub run_time_ticks: Option, + /// Gets or sets the type of the media. #[serde(rename = "MediaType")] pub media_type: MediaType, + /// Gets or sets the start date. #[serde(rename = "StartDate")] - pub start_date: Option, + pub start_date: Option, + /// Gets or sets the end date. #[serde(rename = "EndDate")] - pub end_date: Option, + pub end_date: Option, + /// Gets or sets the series. #[serde(rename = "Series")] pub series: Option, + /// Gets or sets the status. #[serde(rename = "Status")] pub status: Option, + /// Gets or sets the album. #[serde(rename = "Album")] pub album: Option, + /// Gets or sets the album id. #[serde(rename = "AlbumId")] - pub album_id: Option, + pub album_id: Option, + /// Gets or sets the album artist. #[serde(rename = "AlbumArtist")] pub album_artist: Option, + /// Gets or sets the artists. #[serde(rename = "Artists")] pub artists: Vec, + /// Gets or sets the song count. #[serde(rename = "SongCount")] pub song_count: Option, + /// Gets or sets the episode count. #[serde(rename = "EpisodeCount")] pub episode_count: Option, + /// Gets or sets the channel identifier. #[serde(rename = "ChannelId")] - pub channel_id: Option, + pub channel_id: Option, + /// Gets or sets the name of the channel. #[serde(rename = "ChannelName")] pub channel_name: Option, + /// Gets or sets the primary image aspect ratio. #[serde(rename = "PrimaryImageAspectRatio")] pub primary_image_aspect_ratio: Option, } +/// Class SearchHintResult. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct SearchHintResult { + /// Gets the search hints. #[serde(rename = "SearchHints")] pub search_hints: Vec, + /// Gets the total record count. #[serde(rename = "TotalRecordCount")] pub total_record_count: i32, } +/// Class SeekRequestDto. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct SeekRequestDto { + /// Gets or sets the position ticks. #[serde(rename = "PositionTicks")] pub position_ticks: i64, } +/// Class SendCommand. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct SendCommand { + /// Gets the group identifier. #[serde(rename = "GroupId")] - pub group_id: String, + pub group_id: uuid::Uuid, + /// Gets the playlist identifier of the playing item. #[serde(rename = "PlaylistItemId")] - pub playlist_item_id: String, + pub playlist_item_id: uuid::Uuid, + /// Gets or sets the UTC time when to execute the command. #[serde(rename = "When")] - pub when: String, + pub when: jiff::Zoned, + /// Gets the position ticks. #[serde(rename = "PositionTicks")] pub position_ticks: Option, + /// Gets the command. #[serde(rename = "Command")] pub command: SendCommandType, + /// Gets the UTC time when this command has been emitted. #[serde(rename = "EmittedAt")] - pub emitted_at: String, + pub emitted_at: jiff::Zoned, } #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct SeriesInfo { + /// Gets or sets the name. #[serde(rename = "Name")] pub name: Option, + /// Gets or sets the original title. #[serde(rename = "OriginalTitle")] pub original_title: Option, + /// Gets or sets the path. #[serde(rename = "Path")] pub path: Option, + /// Gets or sets the metadata language. #[serde(rename = "MetadataLanguage")] pub metadata_language: Option, + /// Gets or sets the metadata country code. #[serde(rename = "MetadataCountryCode")] pub metadata_country_code: Option, + /// Gets or sets the provider ids. #[serde(rename = "ProviderIds")] pub provider_ids: Option>>, + /// Gets or sets the year. #[serde(rename = "Year")] pub year: Option, #[serde(rename = "IndexNumber")] @@ -3068,7 +4156,7 @@ pub struct SeriesInfo { #[serde(rename = "ParentIndexNumber")] pub parent_index_number: Option, #[serde(rename = "PremiereDate")] - pub premiere_date: Option, + pub premiere_date: Option, #[serde(rename = "IsAutomated")] pub is_automated: bool, } @@ -3077,164 +4165,238 @@ pub struct SeriesInfoRemoteSearchQuery { #[serde(rename = "SearchInfo")] pub search_info: Option, #[serde(rename = "ItemId")] - pub item_id: String, + pub item_id: uuid::Uuid, + /// Gets or sets the provider name to search within if set. #[serde(rename = "SearchProviderName")] pub search_provider_name: Option, + /// Gets or sets a value indicating whether disabled providers should be included. #[serde(rename = "IncludeDisabledProviders")] pub include_disabled_providers: bool, } +/// Series timer cancelled message. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct SeriesTimerCancelledMessage { + /// Gets or sets the data. #[serde(rename = "Data")] pub data: Option, + /// Gets or sets the message id. #[serde(rename = "MessageId")] - pub message_id: String, + pub message_id: uuid::Uuid, + /// The different kinds of messages that are used in the WebSocket api. #[serde(rename = "MessageType")] pub message_type: SessionMessageType, } +/// Series timer created message. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct SeriesTimerCreatedMessage { + /// Gets or sets the data. #[serde(rename = "Data")] pub data: Option, + /// Gets or sets the message id. #[serde(rename = "MessageId")] - pub message_id: String, + pub message_id: uuid::Uuid, + /// The different kinds of messages that are used in the WebSocket api. #[serde(rename = "MessageType")] pub message_type: SessionMessageType, } +/// Class SeriesTimerInfoDto. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct SeriesTimerInfoDto { + /// Gets or sets the Id of the recording. #[serde(rename = "Id")] pub id: Option, #[serde(rename = "Type")] pub _type: Option, + /// Gets or sets the server identifier. #[serde(rename = "ServerId")] pub server_id: Option, + /// Gets or sets the external identifier. #[serde(rename = "ExternalId")] pub external_id: Option, + /// Gets or sets the channel id of the recording. #[serde(rename = "ChannelId")] - pub channel_id: String, + pub channel_id: uuid::Uuid, + /// Gets or sets the external channel identifier. #[serde(rename = "ExternalChannelId")] pub external_channel_id: Option, + /// Gets or sets the channel name of the recording. #[serde(rename = "ChannelName")] pub channel_name: Option, #[serde(rename = "ChannelPrimaryImageTag")] pub channel_primary_image_tag: Option, + /// Gets or sets the program identifier. #[serde(rename = "ProgramId")] pub program_id: Option, + /// Gets or sets the external program identifier. #[serde(rename = "ExternalProgramId")] pub external_program_id: Option, + /// Gets or sets the name of the recording. #[serde(rename = "Name")] pub name: Option, + /// Gets or sets the description of the recording. #[serde(rename = "Overview")] pub overview: Option, + /// Gets or sets the start date of the recording, in UTC. #[serde(rename = "StartDate")] - pub start_date: String, + pub start_date: jiff::Zoned, + /// Gets or sets the end date of the recording, in UTC. #[serde(rename = "EndDate")] - pub end_date: String, + pub end_date: jiff::Zoned, + /// Gets or sets the name of the service. #[serde(rename = "ServiceName")] pub service_name: Option, + /// Gets or sets the priority. #[serde(rename = "Priority")] pub priority: i32, + /// Gets or sets the pre padding seconds. #[serde(rename = "PrePaddingSeconds")] pub pre_padding_seconds: i32, + /// Gets or sets the post padding seconds. #[serde(rename = "PostPaddingSeconds")] pub post_padding_seconds: i32, + /// Gets or sets a value indicating whether this instance is pre padding required. #[serde(rename = "IsPrePaddingRequired")] pub is_pre_padding_required: bool, + /// Gets or sets the Id of the Parent that has a backdrop if the item does not have one. #[serde(rename = "ParentBackdropItemId")] pub parent_backdrop_item_id: Option, + /// Gets or sets the parent backdrop image tags. #[serde(rename = "ParentBackdropImageTags")] pub parent_backdrop_image_tags: Option>, + /// Gets or sets a value indicating whether this instance is post padding required. #[serde(rename = "IsPostPaddingRequired")] pub is_post_padding_required: bool, #[serde(rename = "KeepUntil")] pub keep_until: KeepUntil, + /// Gets or sets a value indicating whether [record any time]. #[serde(rename = "RecordAnyTime")] pub record_any_time: bool, #[serde(rename = "SkipEpisodesInLibrary")] pub skip_episodes_in_library: bool, + /// Gets or sets a value indicating whether [record any channel]. #[serde(rename = "RecordAnyChannel")] pub record_any_channel: bool, #[serde(rename = "KeepUpTo")] pub keep_up_to: i32, + /// Gets or sets a value indicating whether [record new only]. #[serde(rename = "RecordNewOnly")] pub record_new_only: bool, + /// Gets or sets the days. #[serde(rename = "Days")] pub days: Option>, + /// Gets or sets the day pattern. #[serde(rename = "DayPattern")] pub day_pattern: Option, + /// Gets or sets the image tags. #[serde(rename = "ImageTags")] pub image_tags: Option>, + /// Gets or sets the parent thumb item id. #[serde(rename = "ParentThumbItemId")] pub parent_thumb_item_id: Option, + /// Gets or sets the parent thumb image tag. #[serde(rename = "ParentThumbImageTag")] pub parent_thumb_image_tag: Option, + /// Gets or sets the parent primary image item identifier. #[serde(rename = "ParentPrimaryImageItemId")] pub parent_primary_image_item_id: Option, + /// Gets or sets the parent primary image tag. #[serde(rename = "ParentPrimaryImageTag")] pub parent_primary_image_tag: Option, } +/// Query result container. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct SeriesTimerInfoDtoQueryResult { + /// Gets or sets the items. #[serde(rename = "Items")] pub items: Vec, + /// Gets or sets the total number of records available. #[serde(rename = "TotalRecordCount")] pub total_record_count: i32, + /// Gets or sets the index of the first record in Items. #[serde(rename = "StartIndex")] pub start_index: i32, } +/// Represents the server configuration. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct ServerConfiguration { + /// Gets or sets the number of days we should retain log files. #[serde(rename = "LogFileRetentionDays")] pub log_file_retention_days: i32, + /// Gets or sets a value indicating whether this instance is first run. #[serde(rename = "IsStartupWizardCompleted")] pub is_startup_wizard_completed: bool, + /// Gets or sets the cache path. #[serde(rename = "CachePath")] pub cache_path: Option, + /// Gets or sets the last known version that was ran using the configuration. #[serde(rename = "PreviousVersion")] pub previous_version: Option, + /** Gets or sets the stringified PreviousVersion to be stored/loaded, +because System.Version itself isn't xml-serializable.*/ #[serde(rename = "PreviousVersionStr")] pub previous_version_str: Option, + /// Gets or sets a value indicating whether to enable prometheus metrics exporting. #[serde(rename = "EnableMetrics")] pub enable_metrics: bool, #[serde(rename = "EnableNormalizedItemByNameIds")] pub enable_normalized_item_by_name_ids: bool, + /// Gets or sets a value indicating whether this instance is port authorized. #[serde(rename = "IsPortAuthorized")] pub is_port_authorized: bool, + /// Gets or sets a value indicating whether quick connect is available for use on this server. #[serde(rename = "QuickConnectAvailable")] pub quick_connect_available: bool, + /// Gets or sets a value indicating whether [enable case sensitive item ids]. #[serde(rename = "EnableCaseSensitiveItemIds")] pub enable_case_sensitive_item_ids: bool, #[serde(rename = "DisableLiveTvChannelUserDataName")] pub disable_live_tv_channel_user_data_name: bool, + /// Gets or sets the metadata path. #[serde(rename = "MetadataPath")] pub metadata_path: String, + /// Gets or sets the preferred metadata language. #[serde(rename = "PreferredMetadataLanguage")] pub preferred_metadata_language: String, + /// Gets or sets the metadata country code. #[serde(rename = "MetadataCountryCode")] pub metadata_country_code: String, + /// Gets or sets characters to be replaced with a ' ' in strings to create a sort name. #[serde(rename = "SortReplaceCharacters")] pub sort_replace_characters: Vec, + /// Gets or sets characters to be removed from strings to create a sort name. #[serde(rename = "SortRemoveCharacters")] pub sort_remove_characters: Vec, + /// Gets or sets words to be removed from strings to create a sort name. #[serde(rename = "SortRemoveWords")] pub sort_remove_words: Vec, + /// Gets or sets the minimum percentage of an item that must be played in order for playstate to be updated. #[serde(rename = "MinResumePct")] pub min_resume_pct: i32, + /// Gets or sets the maximum percentage of an item that can be played while still saving playstate. If this percentage is crossed playstate will be reset to the beginning and the item will be marked watched. #[serde(rename = "MaxResumePct")] pub max_resume_pct: i32, + /// Gets or sets the minimum duration that an item must have in order to be eligible for playstate updates.. #[serde(rename = "MinResumeDurationSeconds")] pub min_resume_duration_seconds: i32, + /// Gets or sets the minimum minutes of a book that must be played in order for playstate to be updated. #[serde(rename = "MinAudiobookResume")] pub min_audiobook_resume: i32, + /// Gets or sets the remaining minutes of a book that can be played while still saving playstate. If this percentage is crossed playstate will be reset to the beginning and the item will be marked watched. #[serde(rename = "MaxAudiobookResume")] pub max_audiobook_resume: i32, + /** Gets or sets the threshold in minutes after a inactive session gets closed automatically. +If set to 0 the check for inactive sessions gets disabled.*/ #[serde(rename = "InactiveSessionThreshold")] pub inactive_session_threshold: i32, + /** Gets or sets the delay in seconds that we will wait after a file system change to try and discover what has been added/removed +Some delay is necessary with some items because their creation is not atomic. It involves the creation of several +different directories and files.*/ #[serde(rename = "LibraryMonitorDelay")] pub library_monitor_delay: i32, + /// Gets or sets the duration in seconds that we will wait after a library updated event before executing the library changed notification. #[serde(rename = "LibraryUpdateDuration")] pub library_update_duration: i32, + /// Gets or sets the image saving convention. #[serde(rename = "ImageSavingConvention")] pub image_saving_convention: ImageSavingConvention, #[serde(rename = "MetadataOptions")] @@ -3267,185 +4429,269 @@ pub struct ServerConfiguration { pub image_extraction_timeout_ms: i32, #[serde(rename = "PathSubstitutions")] pub path_substitutions: Vec, + /// Gets or sets a value indicating whether slow server responses should be logged as a warning. #[serde(rename = "EnableSlowResponseWarning")] pub enable_slow_response_warning: bool, + /// Gets or sets the threshold for the slow response time warning in ms. #[serde(rename = "SlowResponseThresholdMs")] pub slow_response_threshold_ms: i64, + /// Gets or sets the cors hosts. #[serde(rename = "CorsHosts")] pub cors_hosts: Vec, + /// Gets or sets the number of days we should retain activity logs. #[serde(rename = "ActivityLogRetentionDays")] pub activity_log_retention_days: Option, + /// Gets or sets the how the library scan fans out. #[serde(rename = "LibraryScanFanoutConcurrency")] pub library_scan_fanout_concurrency: i32, + /// Gets or sets the how many metadata refreshes can run concurrently. #[serde(rename = "LibraryMetadataRefreshConcurrency")] pub library_metadata_refresh_concurrency: i32, + /// Gets or sets a value indicating whether older plugins should automatically be deleted from the plugin folder. #[serde(rename = "RemoveOldPlugins")] pub remove_old_plugins: bool, + /// Gets or sets a value indicating whether clients should be allowed to upload logs. #[serde(rename = "AllowClientLogUpload")] pub allow_client_log_upload: bool, + /// Gets or sets the dummy chapter duration in seconds, use 0 (zero) or less to disable generation alltogether. #[serde(rename = "DummyChapterDuration")] pub dummy_chapter_duration: i32, + /// Gets or sets the chapter image resolution. #[serde(rename = "ChapterImageResolution")] pub chapter_image_resolution: ImageResolution, + /// Gets or sets the limit for parallel image encoding. #[serde(rename = "ParallelImageEncodingLimit")] pub parallel_image_encoding_limit: i32, + /// Gets or sets the list of cast receiver applications. #[serde(rename = "CastReceiverApplications")] pub cast_receiver_applications: Vec, + /// Gets or sets the trickplay options. #[serde(rename = "TrickplayOptions")] pub trickplay_options: TrickplayOptions, } +/// The server discovery info model. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct ServerDiscoveryInfo { + /// Gets the address. #[serde(rename = "Address")] pub address: String, + /// Gets the server identifier. #[serde(rename = "Id")] pub id: String, + /// Gets the name. #[serde(rename = "Name")] pub name: String, + /// Gets the endpoint address. #[serde(rename = "EndpointAddress")] pub endpoint_address: Option, } +/// Server restarting down message. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct ServerRestartingMessage { + /// Gets or sets the message id. #[serde(rename = "MessageId")] - pub message_id: String, + pub message_id: uuid::Uuid, + /// The different kinds of messages that are used in the WebSocket api. #[serde(rename = "MessageType")] pub message_type: SessionMessageType, } +/// Server shutting down message. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct ServerShuttingDownMessage { + /// Gets or sets the message id. #[serde(rename = "MessageId")] - pub message_id: String, + pub message_id: uuid::Uuid, + /// The different kinds of messages that are used in the WebSocket api. #[serde(rename = "MessageType")] pub message_type: SessionMessageType, } +/// Session info DTO. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct SessionInfoDto { + /// Gets or sets the play state. #[serde(rename = "PlayState")] pub play_state: Option, + /// Gets or sets the additional users. #[serde(rename = "AdditionalUsers")] pub additional_users: Option>, + /// Gets or sets the client capabilities. #[serde(rename = "Capabilities")] pub capabilities: Option, + /// Gets or sets the remote end point. #[serde(rename = "RemoteEndPoint")] pub remote_end_point: Option, + /// Gets or sets the playable media types. #[serde(rename = "PlayableMediaTypes")] pub playable_media_types: Vec, + /// Gets or sets the id. #[serde(rename = "Id")] pub id: Option, + /// Gets or sets the user id. #[serde(rename = "UserId")] - pub user_id: String, + pub user_id: uuid::Uuid, + /// Gets or sets the username. #[serde(rename = "UserName")] pub user_name: Option, + /// Gets or sets the type of the client. #[serde(rename = "Client")] pub client: Option, + /// Gets or sets the last activity date. #[serde(rename = "LastActivityDate")] - pub last_activity_date: String, + pub last_activity_date: jiff::Zoned, + /// Gets or sets the last playback check in. #[serde(rename = "LastPlaybackCheckIn")] - pub last_playback_check_in: String, + pub last_playback_check_in: jiff::Zoned, + /// Gets or sets the last paused date. #[serde(rename = "LastPausedDate")] - pub last_paused_date: Option, + pub last_paused_date: Option, + /// Gets or sets the name of the device. #[serde(rename = "DeviceName")] pub device_name: Option, + /// Gets or sets the type of the device. #[serde(rename = "DeviceType")] pub device_type: Option, + /// Gets or sets the now playing item. #[serde(rename = "NowPlayingItem")] pub now_playing_item: Option, + /// Gets or sets the now viewing item. #[serde(rename = "NowViewingItem")] pub now_viewing_item: Option, + /// Gets or sets the device id. #[serde(rename = "DeviceId")] pub device_id: Option, + /// Gets or sets the application version. #[serde(rename = "ApplicationVersion")] pub application_version: Option, + /// Gets or sets the transcoding info. #[serde(rename = "TranscodingInfo")] pub transcoding_info: Option, + /// Gets or sets a value indicating whether this session is active. #[serde(rename = "IsActive")] pub is_active: bool, + /// Gets or sets a value indicating whether the session supports media control. #[serde(rename = "SupportsMediaControl")] pub supports_media_control: bool, + /// Gets or sets a value indicating whether the session supports remote control. #[serde(rename = "SupportsRemoteControl")] pub supports_remote_control: bool, + /// Gets or sets the now playing queue. #[serde(rename = "NowPlayingQueue")] pub now_playing_queue: Option>, + /// Gets or sets the now playing queue full items. #[serde(rename = "NowPlayingQueueFullItems")] pub now_playing_queue_full_items: Option>, + /// Gets or sets a value indicating whether the session has a custom device name. #[serde(rename = "HasCustomDeviceName")] pub has_custom_device_name: bool, + /// Gets or sets the playlist item id. #[serde(rename = "PlaylistItemId")] pub playlist_item_id: Option, + /// Gets or sets the server id. #[serde(rename = "ServerId")] pub server_id: Option, + /// Gets or sets the user primary image tag. #[serde(rename = "UserPrimaryImageTag")] pub user_primary_image_tag: Option, + /// Gets or sets the supported commands. #[serde(rename = "SupportedCommands")] pub supported_commands: Vec, } +/// Sessions message. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct SessionsMessage { + /// Gets or sets the data. #[serde(rename = "Data")] pub data: Option>, + /// Gets or sets the message id. #[serde(rename = "MessageId")] - pub message_id: String, + pub message_id: uuid::Uuid, + /// The different kinds of messages that are used in the WebSocket api. #[serde(rename = "MessageType")] pub message_type: SessionMessageType, } +/** Sessions start message. +Data is the timing data encoded as "$initialDelay,$interval" in ms.*/ #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct SessionsStartMessage { + /// Gets or sets the data. #[serde(rename = "Data")] pub data: Option, + /// The different kinds of messages that are used in the WebSocket api. #[serde(rename = "MessageType")] pub message_type: SessionMessageType, } +/// Sessions stop message. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct SessionsStopMessage { + /// The different kinds of messages that are used in the WebSocket api. #[serde(rename = "MessageType")] pub message_type: SessionMessageType, } +/// Class SessionUserInfo. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct SessionUserInfo { + /// Gets or sets the user identifier. #[serde(rename = "UserId")] - pub user_id: String, + pub user_id: uuid::Uuid, + /// Gets or sets the name of the user. #[serde(rename = "UserName")] pub user_name: Option, } +/// Set channel mapping dto. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct SetChannelMappingDto { + /// Gets or sets the provider id. #[serde(rename = "ProviderId")] pub provider_id: String, + /// Gets or sets the tuner channel id. #[serde(rename = "TunerChannelId")] pub tuner_channel_id: String, + /// Gets or sets the provider channel id. #[serde(rename = "ProviderChannelId")] pub provider_channel_id: String, } +/// Class SetPlaylistItemRequestDto. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct SetPlaylistItemRequestDto { + /// Gets or sets the playlist identifier of the playing item. #[serde(rename = "PlaylistItemId")] - pub playlist_item_id: String, + pub playlist_item_id: uuid::Uuid, } +/// Class SetRepeatModeRequestDto. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct SetRepeatModeRequestDto { + /// Enum GroupRepeatMode. #[serde(rename = "Mode")] pub mode: GroupRepeatMode, } +/// Class SetShuffleModeRequestDto. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct SetShuffleModeRequestDto { + /// Enum GroupShuffleMode. #[serde(rename = "Mode")] pub mode: GroupShuffleMode, } #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct SongInfo { + /// Gets or sets the name. #[serde(rename = "Name")] pub name: Option, + /// Gets or sets the original title. #[serde(rename = "OriginalTitle")] pub original_title: Option, + /// Gets or sets the path. #[serde(rename = "Path")] pub path: Option, + /// Gets or sets the metadata language. #[serde(rename = "MetadataLanguage")] pub metadata_language: Option, + /// Gets or sets the metadata country code. #[serde(rename = "MetadataCountryCode")] pub metadata_country_code: Option, + /// Gets or sets the provider ids. #[serde(rename = "ProviderIds")] pub provider_ids: Option>>, + /// Gets or sets the year. #[serde(rename = "Year")] pub year: Option, #[serde(rename = "IndexNumber")] @@ -3453,7 +4699,7 @@ pub struct SongInfo { #[serde(rename = "ParentIndexNumber")] pub parent_index_number: Option, #[serde(rename = "PremiereDate")] - pub premiere_date: Option, + pub premiere_date: Option, #[serde(rename = "IsAutomated")] pub is_automated: bool, #[serde(rename = "AlbumArtists")] @@ -3463,42 +4709,59 @@ pub struct SongInfo { #[serde(rename = "Artists")] pub artists: Option>, } +/// Special view option dto. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct SpecialViewOptionDto { + /// Gets or sets view option name. #[serde(rename = "Name")] pub name: Option, + /// Gets or sets view option id. #[serde(rename = "Id")] pub id: Option, } +/// The startup configuration DTO. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct StartupConfigurationDto { + /// Gets or sets UI language culture. #[serde(rename = "UICulture")] pub ui_culture: Option, + /// Gets or sets the metadata country code. #[serde(rename = "MetadataCountryCode")] pub metadata_country_code: Option, + /// Gets or sets the preferred language for the metadata. #[serde(rename = "PreferredMetadataLanguage")] pub preferred_metadata_language: Option, } +/// Startup remote access dto. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct StartupRemoteAccessDto { + /// Gets or sets a value indicating whether enable remote access. #[serde(rename = "EnableRemoteAccess")] pub enable_remote_access: bool, + /// Gets or sets a value indicating whether enable automatic port mapping. #[serde(rename = "EnableAutomaticPortMapping")] pub enable_automatic_port_mapping: bool, } +/// The startup user DTO. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct StartupUserDto { + /// Gets or sets the username. #[serde(rename = "Name")] pub name: Option, + /// Gets or sets the user's password. #[serde(rename = "Password")] pub password: Option, } +/// Class GroupUpdate. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct StringGroupUpdate { + /// Gets the group identifier. #[serde(rename = "GroupId")] - pub group_id: String, + pub group_id: uuid::Uuid, + /// Gets the update type. #[serde(rename = "Type")] pub _type: GroupUpdateType, + /// Gets the update data. #[serde(rename = "Data")] pub data: String, } @@ -3523,43 +4786,60 @@ pub struct SubtitleOptions { #[serde(rename = "RequirePerfectMatch")] pub require_perfect_match: bool, } +/// A class for subtitle profile information. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct SubtitleProfile { + /// Gets or sets the format. #[serde(rename = "Format")] pub format: Option, + /// Gets or sets the delivery method. #[serde(rename = "Method")] pub method: SubtitleDeliveryMethod, + /// Gets or sets the DIDL mode. #[serde(rename = "DidlMode")] pub didl_mode: Option, + /// Gets or sets the language. #[serde(rename = "Language")] pub language: Option, + /// Gets or sets the container. #[serde(rename = "Container")] pub container: Option, } +/// Sync play command. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct SyncPlayCommandMessage { + /// Class SendCommand. #[serde(rename = "Data")] pub data: Option, + /// Gets or sets the message id. #[serde(rename = "MessageId")] - pub message_id: String, + pub message_id: uuid::Uuid, + /// The different kinds of messages that are used in the WebSocket api. #[serde(rename = "MessageType")] pub message_type: SessionMessageType, } +/// Untyped sync play command. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct SyncPlayGroupUpdateCommandMessage { + /// Group update without data. #[serde(rename = "Data")] pub data: Option, + /// Gets or sets the message id. #[serde(rename = "MessageId")] - pub message_id: String, + pub message_id: uuid::Uuid, + /// The different kinds of messages that are used in the WebSocket api. #[serde(rename = "MessageType")] pub message_type: SessionMessageType, } +/// Class QueueItem. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct SyncPlayQueueItem { + /// Gets the item identifier. #[serde(rename = "ItemId")] - pub item_id: String, + pub item_id: uuid::Uuid, + /// Gets the playlist identifier of the item. #[serde(rename = "PlaylistItemId")] - pub playlist_item_id: String, + pub playlist_item_id: uuid::Uuid, } #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct SyncStats { @@ -3592,56 +4872,80 @@ pub struct SyncStats { #[serde(rename = "UpdatedUserData")] pub updated_user_data: i32, } +/// Class SystemInfo. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct SystemInfo { + /// Gets or sets the local address. #[serde(rename = "LocalAddress")] pub local_address: Option, + /// Gets or sets the name of the server. #[serde(rename = "ServerName")] pub server_name: Option, + /// Gets or sets the server version. #[serde(rename = "Version")] pub version: Option, + /// Gets or sets the product name. This is the AssemblyProduct name. #[serde(rename = "ProductName")] pub product_name: Option, + /// Gets or sets the operating system. #[serde(rename = "OperatingSystem")] pub operating_system: Option, + /// Gets or sets the id. #[serde(rename = "Id")] pub id: Option, + /// Gets or sets a value indicating whether the startup wizard is completed. #[serde(rename = "StartupWizardCompleted")] pub startup_wizard_completed: Option, + /// Gets or sets the display name of the operating system. #[serde(rename = "OperatingSystemDisplayName")] pub operating_system_display_name: Option, + /// Gets or sets the package name. #[serde(rename = "PackageName")] pub package_name: Option, + /// Gets or sets a value indicating whether this instance has pending restart. #[serde(rename = "HasPendingRestart")] pub has_pending_restart: bool, #[serde(rename = "IsShuttingDown")] pub is_shutting_down: bool, + /// Gets or sets a value indicating whether [supports library monitor]. #[serde(rename = "SupportsLibraryMonitor")] pub supports_library_monitor: bool, + /// Gets or sets the web socket port number. #[serde(rename = "WebSocketPortNumber")] pub web_socket_port_number: i32, + /// Gets or sets the completed installations. #[serde(rename = "CompletedInstallations")] pub completed_installations: Option>, + /// Gets or sets a value indicating whether this instance can self restart. #[serde(rename = "CanSelfRestart")] pub can_self_restart: bool, #[serde(rename = "CanLaunchWebBrowser")] pub can_launch_web_browser: bool, + /// Gets or sets the program data path. #[serde(rename = "ProgramDataPath")] pub program_data_path: Option, + /// Gets or sets the web UI resources path. #[serde(rename = "WebPath")] pub web_path: Option, + /// Gets or sets the items by name path. #[serde(rename = "ItemsByNamePath")] pub items_by_name_path: Option, + /// Gets or sets the cache path. #[serde(rename = "CachePath")] pub cache_path: Option, + /// Gets or sets the log path. #[serde(rename = "LogPath")] pub log_path: Option, + /// Gets or sets the internal metadata path. #[serde(rename = "InternalMetadataPath")] pub internal_metadata_path: Option, + /// Gets or sets the transcode path. #[serde(rename = "TranscodingTempPath")] pub transcoding_temp_path: Option, + /// Gets or sets the list of cast receiver applications. #[serde(rename = "CastReceiverApplications")] pub cast_receiver_applications: Option>, + /// Gets or sets a value indicating whether this instance has update available. #[serde(rename = "HasUpdateAvailable")] pub has_update_available: bool, #[serde(rename = "EncoderLocation")] @@ -3649,87 +4953,126 @@ pub struct SystemInfo { #[serde(rename = "SystemArchitecture")] pub system_architecture: Option, } +/// Class TaskInfo. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct TaskInfo { + /// Gets or sets the name. #[serde(rename = "Name")] pub name: Option, + /// Gets or sets the state of the task. #[serde(rename = "State")] pub state: TaskState, + /// Gets or sets the progress. #[serde(rename = "CurrentProgressPercentage")] pub current_progress_percentage: Option, + /// Gets or sets the id. #[serde(rename = "Id")] pub id: Option, + /// Gets or sets the last execution result. #[serde(rename = "LastExecutionResult")] pub last_execution_result: Option, + /// Gets or sets the triggers. #[serde(rename = "Triggers")] pub triggers: Option>, + /// Gets or sets the description. #[serde(rename = "Description")] pub description: Option, + /// Gets or sets the category. #[serde(rename = "Category")] pub category: Option, + /// Gets or sets a value indicating whether this instance is hidden. #[serde(rename = "IsHidden")] pub is_hidden: bool, + /// Gets or sets the key. #[serde(rename = "Key")] pub key: Option, } +/// Class TaskExecutionInfo. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct TaskResult { + /// Gets or sets the start time UTC. #[serde(rename = "StartTimeUtc")] - pub start_time_utc: String, + pub start_time_utc: jiff::Zoned, + /// Gets or sets the end time UTC. #[serde(rename = "EndTimeUtc")] - pub end_time_utc: String, + pub end_time_utc: jiff::Zoned, + /// Gets or sets the status. #[serde(rename = "Status")] pub status: TaskCompletionStatus, + /// Gets or sets the name. #[serde(rename = "Name")] pub name: Option, + /// Gets or sets the key. #[serde(rename = "Key")] pub key: Option, + /// Gets or sets the id. #[serde(rename = "Id")] pub id: Option, + /// Gets or sets the error message. #[serde(rename = "ErrorMessage")] pub error_message: Option, + /// Gets or sets the long error message. #[serde(rename = "LongErrorMessage")] pub long_error_message: Option, } +/// Class TaskTriggerInfo. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct TaskTriggerInfo { + /// Gets or sets the type. #[serde(rename = "Type")] pub _type: Option, + /// Gets or sets the time of day. #[serde(rename = "TimeOfDayTicks")] pub time_of_day_ticks: Option, + /// Gets or sets the interval. #[serde(rename = "IntervalTicks")] pub interval_ticks: Option, + /// Gets or sets the day of week. #[serde(rename = "DayOfWeek")] pub day_of_week: Option, + /// Gets or sets the maximum runtime ticks. #[serde(rename = "MaxRuntimeTicks")] pub max_runtime_ticks: Option, } +/// Class ThemeMediaResult. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct ThemeMediaResult { + /// Gets or sets the items. #[serde(rename = "Items")] pub items: Vec, + /// Gets or sets the total number of records available. #[serde(rename = "TotalRecordCount")] pub total_record_count: i32, + /// Gets or sets the index of the first record in Items. #[serde(rename = "StartIndex")] pub start_index: i32, + /// Gets or sets the owner id. #[serde(rename = "OwnerId")] - pub owner_id: String, + pub owner_id: uuid::Uuid, } +/// Timer cancelled message. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct TimerCancelledMessage { + /// Gets or sets the data. #[serde(rename = "Data")] pub data: Option, + /// Gets or sets the message id. #[serde(rename = "MessageId")] - pub message_id: String, + pub message_id: uuid::Uuid, + /// The different kinds of messages that are used in the WebSocket api. #[serde(rename = "MessageType")] pub message_type: SessionMessageType, } +/// Timer created message. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct TimerCreatedMessage { + /// Gets or sets the data. #[serde(rename = "Data")] pub data: Option, + /// Gets or sets the message id. #[serde(rename = "MessageId")] - pub message_id: String, + pub message_id: uuid::Uuid, + /// The different kinds of messages that are used in the WebSocket api. #[serde(rename = "MessageType")] pub message_type: SessionMessageType, } @@ -3738,90 +5081,126 @@ pub struct TimerEventInfo { #[serde(rename = "Id")] pub id: String, #[serde(rename = "ProgramId")] - pub program_id: Option, + pub program_id: Option, } #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct TimerInfoDto { + /// Gets or sets the Id of the recording. #[serde(rename = "Id")] pub id: Option, #[serde(rename = "Type")] pub _type: Option, + /// Gets or sets the server identifier. #[serde(rename = "ServerId")] pub server_id: Option, + /// Gets or sets the external identifier. #[serde(rename = "ExternalId")] pub external_id: Option, + /// Gets or sets the channel id of the recording. #[serde(rename = "ChannelId")] - pub channel_id: String, + pub channel_id: uuid::Uuid, + /// Gets or sets the external channel identifier. #[serde(rename = "ExternalChannelId")] pub external_channel_id: Option, + /// Gets or sets the channel name of the recording. #[serde(rename = "ChannelName")] pub channel_name: Option, #[serde(rename = "ChannelPrimaryImageTag")] pub channel_primary_image_tag: Option, + /// Gets or sets the program identifier. #[serde(rename = "ProgramId")] pub program_id: Option, + /// Gets or sets the external program identifier. #[serde(rename = "ExternalProgramId")] pub external_program_id: Option, + /// Gets or sets the name of the recording. #[serde(rename = "Name")] pub name: Option, + /// Gets or sets the description of the recording. #[serde(rename = "Overview")] pub overview: Option, + /// Gets or sets the start date of the recording, in UTC. #[serde(rename = "StartDate")] - pub start_date: String, + pub start_date: jiff::Zoned, + /// Gets or sets the end date of the recording, in UTC. #[serde(rename = "EndDate")] - pub end_date: String, + pub end_date: jiff::Zoned, + /// Gets or sets the name of the service. #[serde(rename = "ServiceName")] pub service_name: Option, + /// Gets or sets the priority. #[serde(rename = "Priority")] pub priority: i32, + /// Gets or sets the pre padding seconds. #[serde(rename = "PrePaddingSeconds")] pub pre_padding_seconds: i32, + /// Gets or sets the post padding seconds. #[serde(rename = "PostPaddingSeconds")] pub post_padding_seconds: i32, + /// Gets or sets a value indicating whether this instance is pre padding required. #[serde(rename = "IsPrePaddingRequired")] pub is_pre_padding_required: bool, + /// Gets or sets the Id of the Parent that has a backdrop if the item does not have one. #[serde(rename = "ParentBackdropItemId")] pub parent_backdrop_item_id: Option, + /// Gets or sets the parent backdrop image tags. #[serde(rename = "ParentBackdropImageTags")] pub parent_backdrop_image_tags: Option>, + /// Gets or sets a value indicating whether this instance is post padding required. #[serde(rename = "IsPostPaddingRequired")] pub is_post_padding_required: bool, #[serde(rename = "KeepUntil")] pub keep_until: KeepUntil, + /// Gets or sets the status. #[serde(rename = "Status")] pub status: RecordingStatus, + /// Gets or sets the series timer identifier. #[serde(rename = "SeriesTimerId")] pub series_timer_id: Option, + /// Gets or sets the external series timer identifier. #[serde(rename = "ExternalSeriesTimerId")] pub external_series_timer_id: Option, + /// Gets or sets the run time ticks. #[serde(rename = "RunTimeTicks")] pub run_time_ticks: Option, + /// Gets or sets the program information. #[serde(rename = "ProgramInfo")] pub program_info: Option, } +/// Query result container. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct TimerInfoDtoQueryResult { + /// Gets or sets the items. #[serde(rename = "Items")] pub items: Vec, + /// Gets or sets the total number of records available. #[serde(rename = "TotalRecordCount")] pub total_record_count: i32, + /// Gets or sets the index of the first record in Items. #[serde(rename = "StartIndex")] pub start_index: i32, } #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct TrailerInfo { + /// Gets or sets the name. #[serde(rename = "Name")] pub name: Option, + /// Gets or sets the original title. #[serde(rename = "OriginalTitle")] pub original_title: Option, + /// Gets or sets the path. #[serde(rename = "Path")] pub path: Option, + /// Gets or sets the metadata language. #[serde(rename = "MetadataLanguage")] pub metadata_language: Option, + /// Gets or sets the metadata country code. #[serde(rename = "MetadataCountryCode")] pub metadata_country_code: Option, + /// Gets or sets the provider ids. #[serde(rename = "ProviderIds")] pub provider_ids: Option>>, + /// Gets or sets the year. #[serde(rename = "Year")] pub year: Option, #[serde(rename = "IndexNumber")] @@ -3829,7 +5208,7 @@ pub struct TrailerInfo { #[serde(rename = "ParentIndexNumber")] pub parent_index_number: Option, #[serde(rename = "PremiereDate")] - pub premiere_date: Option, + pub premiere_date: Option, #[serde(rename = "IsAutomated")] pub is_automated: bool, } @@ -3838,119 +5217,176 @@ pub struct TrailerInfoRemoteSearchQuery { #[serde(rename = "SearchInfo")] pub search_info: Option, #[serde(rename = "ItemId")] - pub item_id: String, + pub item_id: uuid::Uuid, + /// Gets or sets the provider name to search within if set. #[serde(rename = "SearchProviderName")] pub search_provider_name: Option, + /// Gets or sets a value indicating whether disabled providers should be included. #[serde(rename = "IncludeDisabledProviders")] pub include_disabled_providers: bool, } +/// Class holding information on a runnning transcode. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct TranscodingInfo { + /// Gets or sets the thread count used for encoding. #[serde(rename = "AudioCodec")] pub audio_codec: Option, + /// Gets or sets the thread count used for encoding. #[serde(rename = "VideoCodec")] pub video_codec: Option, + /// Gets or sets the thread count used for encoding. #[serde(rename = "Container")] pub container: Option, + /// Gets or sets a value indicating whether the video is passed through. #[serde(rename = "IsVideoDirect")] pub is_video_direct: bool, + /// Gets or sets a value indicating whether the audio is passed through. #[serde(rename = "IsAudioDirect")] pub is_audio_direct: bool, + /// Gets or sets the bitrate. #[serde(rename = "Bitrate")] pub bitrate: Option, + /// Gets or sets the framerate. #[serde(rename = "Framerate")] - pub framerate: Option, + pub framerate: Option, + /// Gets or sets the completion percentage. #[serde(rename = "CompletionPercentage")] pub completion_percentage: Option, + /// Gets or sets the video width. #[serde(rename = "Width")] pub width: Option, + /// Gets or sets the video height. #[serde(rename = "Height")] pub height: Option, + /// Gets or sets the audio channels. #[serde(rename = "AudioChannels")] pub audio_channels: Option, + /// Gets or sets the hardware acceleration type. #[serde(rename = "HardwareAccelerationType")] pub hardware_acceleration_type: Option, + /// Gets or sets the transcode reasons. #[serde(rename = "TranscodeReasons")] pub transcode_reasons: Vec, } +/** A class for transcoding profile information. +Note for client developers: Conditions defined in MediaBrowser.Model.Dlna.CodecProfile has higher priority and can override values defined here.*/ #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct TranscodingProfile { + /// Gets or sets the container. #[serde(rename = "Container")] pub container: String, + /// Gets or sets the DLNA profile type. #[serde(rename = "Type")] pub _type: DlnaProfileType, + /// Gets or sets the video codec. #[serde(rename = "VideoCodec")] pub video_codec: String, + /// Gets or sets the audio codec. #[serde(rename = "AudioCodec")] pub audio_codec: String, + /// Gets or sets the protocol. #[serde(rename = "Protocol")] pub protocol: MediaStreamProtocol, + /// Gets or sets a value indicating whether the content length should be estimated. #[serde(rename = "EstimateContentLength")] pub estimate_content_length: bool, + /// Gets or sets a value indicating whether M2TS mode is enabled. #[serde(rename = "EnableMpegtsM2TsMode")] pub enable_mpegts_m2_ts_mode: bool, + /// Gets or sets the transcoding seek info mode. #[serde(rename = "TranscodeSeekInfo")] pub transcode_seek_info: TranscodeSeekInfo, + /// Gets or sets a value indicating whether timestamps should be copied. #[serde(rename = "CopyTimestamps")] pub copy_timestamps: bool, + /// Gets or sets the encoding context. #[serde(rename = "Context")] pub context: EncodingContext, + /// Gets or sets a value indicating whether subtitles are allowed in the manifest. #[serde(rename = "EnableSubtitlesInManifest")] pub enable_subtitles_in_manifest: bool, + /// Gets or sets the maximum audio channels. #[serde(rename = "MaxAudioChannels")] pub max_audio_channels: Option, + /// Gets or sets the minimum amount of segments. #[serde(rename = "MinSegments")] pub min_segments: i32, + /// Gets or sets the segment length. #[serde(rename = "SegmentLength")] pub segment_length: i32, + /// Gets or sets a value indicating whether breaking the video stream on non-keyframes is supported. #[serde(rename = "BreakOnNonKeyFrames")] pub break_on_non_key_frames: bool, + /// Gets or sets the profile conditions. #[serde(rename = "Conditions")] pub conditions: Vec, + /// Gets or sets a value indicating whether variable bitrate encoding is supported. #[serde(rename = "EnableAudioVbrEncoding")] pub enable_audio_vbr_encoding: bool, } +/// An entity representing the metadata for a group of trickplay tiles. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct TrickplayInfo { + /// Gets or sets width of an individual thumbnail. #[serde(rename = "Width")] pub width: i32, + /// Gets or sets height of an individual thumbnail. #[serde(rename = "Height")] pub height: i32, + /// Gets or sets amount of thumbnails per row. #[serde(rename = "TileWidth")] pub tile_width: i32, + /// Gets or sets amount of thumbnails per column. #[serde(rename = "TileHeight")] pub tile_height: i32, + /// Gets or sets total amount of non-black thumbnails. #[serde(rename = "ThumbnailCount")] pub thumbnail_count: i32, + /// Gets or sets interval in milliseconds between each trickplay thumbnail. #[serde(rename = "Interval")] pub interval: i32, + /// Gets or sets peak bandwith usage in bits per second. #[serde(rename = "Bandwidth")] pub bandwidth: i32, } +/// Class TrickplayOptions. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct TrickplayOptions { + /// Gets or sets a value indicating whether or not to use HW acceleration. #[serde(rename = "EnableHwAcceleration")] pub enable_hw_acceleration: bool, + /// Gets or sets a value indicating whether or not to use HW accelerated MJPEG encoding. #[serde(rename = "EnableHwEncoding")] pub enable_hw_encoding: bool, + /** Gets or sets a value indicating whether to only extract key frames. +Significantly faster, but is not compatible with all decoders and/or video files.*/ #[serde(rename = "EnableKeyFrameOnlyExtraction")] pub enable_key_frame_only_extraction: bool, + /// Gets or sets the behavior used by trickplay provider on library scan/update. #[serde(rename = "ScanBehavior")] pub scan_behavior: TrickplayScanBehavior, + /// Gets or sets the process priority for the ffmpeg process. #[serde(rename = "ProcessPriority")] pub process_priority: ProcessPriorityClass, + /// Gets or sets the interval, in ms, between each new trickplay image. #[serde(rename = "Interval")] pub interval: i32, + /// Gets or sets the target width resolutions, in px, to generates preview images for. #[serde(rename = "WidthResolutions")] pub width_resolutions: Vec, + /// Gets or sets number of tile images to allow in X dimension. #[serde(rename = "TileWidth")] pub tile_width: i32, + /// Gets or sets number of tile images to allow in Y dimension. #[serde(rename = "TileHeight")] pub tile_height: i32, + /// Gets or sets the ffmpeg output quality level. #[serde(rename = "Qscale")] pub qscale: i32, + /// Gets or sets the jpeg quality to use for image tiles. #[serde(rename = "JpegQuality")] pub jpeg_quality: i32, + /// Gets or sets the number of threads to be used by ffmpeg. #[serde(rename = "ProcessThreads")] pub process_threads: i32, } @@ -4013,97 +5449,138 @@ pub struct TypeOptions { #[serde(rename = "ImageOptions")] pub image_options: Option>, } +/// Update library options dto. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct UpdateLibraryOptionsDto { + /// Gets or sets the library item id. #[serde(rename = "Id")] - pub id: String, + pub id: uuid::Uuid, + /// Gets or sets library options. #[serde(rename = "LibraryOptions")] pub library_options: Option, } +/// Update library options dto. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct UpdateMediaPathRequestDto { + /// Gets or sets the library name. #[serde(rename = "Name")] pub name: String, + /// Gets or sets library folder path information. #[serde(rename = "PathInfo")] pub path_info: MediaPathInfo, } +/// Update existing playlist dto. Fields set to `null` will not be updated and keep their current values. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct UpdatePlaylistDto { + /// Gets or sets the name of the new playlist. #[serde(rename = "Name")] pub name: Option, + /// Gets or sets item ids of the playlist. #[serde(rename = "Ids")] - pub ids: Option>, + pub ids: Option>, + /// Gets or sets the playlist users. #[serde(rename = "Users")] pub users: Option>, + /// Gets or sets a value indicating whether the playlist is public. #[serde(rename = "IsPublic")] pub is_public: Option, } +/// Update existing playlist user dto. Fields set to `null` will not be updated and keep their current values. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct UpdatePlaylistUserDto { + /// Gets or sets a value indicating whether the user can edit the playlist. #[serde(rename = "CanEdit")] pub can_edit: Option, } +/// This is used by the api to get information about a item user data. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct UpdateUserItemDataDto { + /// Gets or sets the rating. #[serde(rename = "Rating")] pub rating: Option, + /// Gets or sets the played percentage. #[serde(rename = "PlayedPercentage")] pub played_percentage: Option, + /// Gets or sets the unplayed item count. #[serde(rename = "UnplayedItemCount")] pub unplayed_item_count: Option, + /// Gets or sets the playback position ticks. #[serde(rename = "PlaybackPositionTicks")] pub playback_position_ticks: Option, + /// Gets or sets the play count. #[serde(rename = "PlayCount")] pub play_count: Option, + /// Gets or sets a value indicating whether this instance is favorite. #[serde(rename = "IsFavorite")] pub is_favorite: Option, + /// Gets or sets a value indicating whether this MediaBrowser.Model.Dto.UpdateUserItemDataDto is likes. #[serde(rename = "Likes")] pub likes: Option, + /// Gets or sets the last played date. #[serde(rename = "LastPlayedDate")] - pub last_played_date: Option, + pub last_played_date: Option, + /// Gets or sets a value indicating whether this MediaBrowser.Model.Dto.UserItemDataDto is played. #[serde(rename = "Played")] pub played: Option, + /// Gets or sets the key. #[serde(rename = "Key")] pub key: Option, + /// Gets or sets the item identifier. #[serde(rename = "ItemId")] pub item_id: Option, } +/// The update user password request body. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct UpdateUserPassword { + /// Gets or sets the current sha1-hashed password. #[serde(rename = "CurrentPassword")] pub current_password: Option, + /// Gets or sets the current plain text password. #[serde(rename = "CurrentPw")] pub current_pw: Option, + /// Gets or sets the new plain text password. #[serde(rename = "NewPw")] pub new_pw: Option, + /// Gets or sets a value indicating whether to reset the password. #[serde(rename = "ResetPassword")] pub reset_password: bool, } +/// Upload subtitles dto. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct UploadSubtitleDto { + /// Gets or sets the subtitle language. #[serde(rename = "Language")] pub language: String, + /// Gets or sets the subtitle format. #[serde(rename = "Format")] pub format: String, + /// Gets or sets a value indicating whether the subtitle is forced. #[serde(rename = "IsForced")] pub is_forced: bool, + /// Gets or sets a value indicating whether the subtitle is for hearing impaired. #[serde(rename = "IsHearingImpaired")] pub is_hearing_impaired: bool, + /// Gets or sets the subtitle data. #[serde(rename = "Data")] pub data: String, } +/// Class UserConfiguration. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct UserConfiguration { + /// Gets or sets the audio language preference. #[serde(rename = "AudioLanguagePreference")] pub audio_language_preference: Option, + /// Gets or sets a value indicating whether [play default audio track]. #[serde(rename = "PlayDefaultAudioTrack")] pub play_default_audio_track: bool, + /// Gets or sets the subtitle language preference. #[serde(rename = "SubtitleLanguagePreference")] pub subtitle_language_preference: Option, #[serde(rename = "DisplayMissingEpisodes")] pub display_missing_episodes: bool, #[serde(rename = "GroupedFolders")] - pub grouped_folders: Vec, + pub grouped_folders: Vec, + /// An enum representing a subtitle playback mode. #[serde(rename = "SubtitleMode")] pub subtitle_mode: SubtitlePlaybackMode, #[serde(rename = "DisplayCollectionsView")] @@ -4111,11 +5588,11 @@ pub struct UserConfiguration { #[serde(rename = "EnableLocalPassword")] pub enable_local_password: bool, #[serde(rename = "OrderedViews")] - pub ordered_views: Vec, + pub ordered_views: Vec, #[serde(rename = "LatestItemsExcludes")] - pub latest_items_excludes: Vec, + pub latest_items_excludes: Vec, #[serde(rename = "MyMediaExcludes")] - pub my_media_excludes: Vec, + pub my_media_excludes: Vec, #[serde(rename = "HidePlayedInLatest")] pub hide_played_in_latest: bool, #[serde(rename = "RememberAudioSelections")] @@ -4124,113 +5601,164 @@ pub struct UserConfiguration { pub remember_subtitle_selections: bool, #[serde(rename = "EnableNextEpisodeAutoPlay")] pub enable_next_episode_auto_play: bool, + /// Gets or sets the id of the selected cast receiver. #[serde(rename = "CastReceiverId")] pub cast_receiver_id: Option, } +/// User data changed message. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct UserDataChangedMessage { + /// Class UserDataChangeInfo. #[serde(rename = "Data")] pub data: Option, + /// Gets or sets the message id. #[serde(rename = "MessageId")] - pub message_id: String, + pub message_id: uuid::Uuid, + /// The different kinds of messages that are used in the WebSocket api. #[serde(rename = "MessageType")] pub message_type: SessionMessageType, } +/// Class UserDataChangeInfo. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct UserDataChangeInfo { + /// Gets or sets the user id. #[serde(rename = "UserId")] - pub user_id: String, + pub user_id: uuid::Uuid, + /// Gets or sets the user data list. #[serde(rename = "UserDataList")] pub user_data_list: Vec, } +/// User deleted message. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct UserDeletedMessage { + /// Gets or sets the data. #[serde(rename = "Data")] - pub data: String, + pub data: uuid::Uuid, + /// Gets or sets the message id. #[serde(rename = "MessageId")] - pub message_id: String, + pub message_id: uuid::Uuid, + /// The different kinds of messages that are used in the WebSocket api. #[serde(rename = "MessageType")] pub message_type: SessionMessageType, } +/// Class UserDto. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct UserDto { + /// Gets or sets the name. #[serde(rename = "Name")] pub name: Option, + /// Gets or sets the server identifier. #[serde(rename = "ServerId")] pub server_id: Option, + /** Gets or sets the name of the server. +This is not used by the server and is for client-side usage only.*/ #[serde(rename = "ServerName")] pub server_name: Option, + /// Gets or sets the id. #[serde(rename = "Id")] - pub id: String, + pub id: uuid::Uuid, + /// Gets or sets the primary image tag. #[serde(rename = "PrimaryImageTag")] pub primary_image_tag: Option, + /// Gets or sets a value indicating whether this instance has password. #[serde(rename = "HasPassword")] pub has_password: bool, + /// Gets or sets a value indicating whether this instance has configured password. #[serde(rename = "HasConfiguredPassword")] pub has_configured_password: bool, + /// Gets or sets a value indicating whether this instance has configured easy password. #[serde(rename = "HasConfiguredEasyPassword")] pub has_configured_easy_password: bool, + /// Gets or sets whether async login is enabled or not. #[serde(rename = "EnableAutoLogin")] pub enable_auto_login: Option, + /// Gets or sets the last login date. #[serde(rename = "LastLoginDate")] - pub last_login_date: Option, + pub last_login_date: Option, + /// Gets or sets the last activity date. #[serde(rename = "LastActivityDate")] - pub last_activity_date: Option, + pub last_activity_date: Option, + /// Gets or sets the configuration. #[serde(rename = "Configuration")] pub configuration: Option, + /// Gets or sets the policy. #[serde(rename = "Policy")] pub policy: Option, + /// Gets or sets the primary image aspect ratio. #[serde(rename = "PrimaryImageAspectRatio")] pub primary_image_aspect_ratio: Option, } +/// Class UserItemDataDto. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct UserItemDataDto { + /// Gets or sets the rating. #[serde(rename = "Rating")] pub rating: Option, + /// Gets or sets the played percentage. #[serde(rename = "PlayedPercentage")] pub played_percentage: Option, + /// Gets or sets the unplayed item count. #[serde(rename = "UnplayedItemCount")] pub unplayed_item_count: Option, + /// Gets or sets the playback position ticks. #[serde(rename = "PlaybackPositionTicks")] pub playback_position_ticks: i64, + /// Gets or sets the play count. #[serde(rename = "PlayCount")] pub play_count: i32, + /// Gets or sets a value indicating whether this instance is favorite. #[serde(rename = "IsFavorite")] pub is_favorite: bool, + /// Gets or sets a value indicating whether this MediaBrowser.Model.Dto.UserItemDataDto is likes. #[serde(rename = "Likes")] pub likes: Option, + /// Gets or sets the last played date. #[serde(rename = "LastPlayedDate")] - pub last_played_date: Option, + pub last_played_date: Option, + /// Gets or sets a value indicating whether this MediaBrowser.Model.Dto.UserItemDataDto is played. #[serde(rename = "Played")] pub played: bool, + /// Gets or sets the key. #[serde(rename = "Key")] pub key: String, + /// Gets or sets the item identifier. #[serde(rename = "ItemId")] - pub item_id: String, + pub item_id: uuid::Uuid, } +/// Query result container. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct UserItemDataDtoQueryResult { + /// Gets or sets the items. #[serde(rename = "Items")] pub items: Vec, + /// Gets or sets the total number of records available. #[serde(rename = "TotalRecordCount")] pub total_record_count: i32, + /// Gets or sets the index of the first record in Items. #[serde(rename = "StartIndex")] pub start_index: i32, } #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct UserPolicy { + /// Gets or sets a value indicating whether this instance is administrator. #[serde(rename = "IsAdministrator")] pub is_administrator: bool, + /// Gets or sets a value indicating whether this instance is hidden. #[serde(rename = "IsHidden")] pub is_hidden: bool, + /// Gets or sets a value indicating whether this instance can manage collections. #[serde(rename = "EnableCollectionManagement")] pub enable_collection_management: bool, + /// Gets or sets a value indicating whether this instance can manage subtitles. #[serde(rename = "EnableSubtitleManagement")] pub enable_subtitle_management: bool, + /// Gets or sets a value indicating whether this user can manage lyrics. #[serde(rename = "EnableLyricManagement")] pub enable_lyric_management: bool, + /// Gets or sets a value indicating whether this instance is disabled. #[serde(rename = "IsDisabled")] pub is_disabled: bool, + /// Gets or sets the max parental rating. #[serde(rename = "MaxParentalRating")] pub max_parental_rating: Option, #[serde(rename = "BlockedTags")] @@ -4269,6 +5797,7 @@ pub struct UserPolicy { pub enable_content_deletion_from_folders: Option>, #[serde(rename = "EnableContentDownloading")] pub enable_content_downloading: bool, + /// Gets or sets a value indicating whether [enable synchronize]. #[serde(rename = "EnableSyncTranscoding")] pub enable_sync_transcoding: bool, #[serde(rename = "EnableMediaConversion")] @@ -4278,11 +5807,11 @@ pub struct UserPolicy { #[serde(rename = "EnableAllDevices")] pub enable_all_devices: bool, #[serde(rename = "EnabledChannels")] - pub enabled_channels: Option>, + pub enabled_channels: Option>, #[serde(rename = "EnableAllChannels")] pub enable_all_channels: bool, #[serde(rename = "EnabledFolders")] - pub enabled_folders: Option>, + pub enabled_folders: Option>, #[serde(rename = "EnableAllFolders")] pub enable_all_folders: bool, #[serde(rename = "InvalidLoginAttemptCount")] @@ -4294,76 +5823,104 @@ pub struct UserPolicy { #[serde(rename = "EnablePublicSharing")] pub enable_public_sharing: bool, #[serde(rename = "BlockedMediaFolders")] - pub blocked_media_folders: Option>, + pub blocked_media_folders: Option>, #[serde(rename = "BlockedChannels")] - pub blocked_channels: Option>, + pub blocked_channels: Option>, #[serde(rename = "RemoteClientBitrateLimit")] pub remote_client_bitrate_limit: i32, #[serde(rename = "AuthenticationProviderId")] pub authentication_provider_id: String, #[serde(rename = "PasswordResetProviderId")] pub password_reset_provider_id: String, + /// Gets or sets a value indicating what SyncPlay features the user can access. #[serde(rename = "SyncPlayAccess")] pub sync_play_access: SyncPlayUserAccessType, } +/// User updated message. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct UserUpdatedMessage { + /// Class UserDto. #[serde(rename = "Data")] pub data: Option, + /// Gets or sets the message id. #[serde(rename = "MessageId")] - pub message_id: String, + pub message_id: uuid::Uuid, + /// The different kinds of messages that are used in the WebSocket api. #[serde(rename = "MessageType")] pub message_type: SessionMessageType, } +/// Class UtcTimeResponse. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct UtcTimeResponse { + /// Gets the UTC time when request has been received. #[serde(rename = "RequestReceptionTime")] - pub request_reception_time: String, + pub request_reception_time: jiff::Zoned, + /// Gets the UTC time when response has been sent. #[serde(rename = "ResponseTransmissionTime")] - pub response_transmission_time: String, + pub response_transmission_time: jiff::Zoned, } +/// Validate path object. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct ValidatePathDto { + /// Gets or sets a value indicating whether validate if path is writable. #[serde(rename = "ValidateWritable")] pub validate_writable: bool, + /// Gets or sets the path. #[serde(rename = "Path")] pub path: Option, + /// Gets or sets is path file. #[serde(rename = "IsFile")] pub is_file: Option, } +/// Defines the MediaBrowser.Model.Updates.VersionInfo class. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct VersionInfo { + /// Gets or sets the version. #[serde(rename = "version")] pub version: String, + /// Gets the version as a System.Version. #[serde(rename = "VersionNumber")] pub version_number: String, + /// Gets or sets the changelog for this version. #[serde(rename = "changelog")] pub changelog: Option, + /// Gets or sets the ABI that this version was built against. #[serde(rename = "targetAbi")] pub target_abi: Option, + /// Gets or sets the source URL. #[serde(rename = "sourceUrl")] pub source_url: Option, + /// Gets or sets a checksum for the binary. #[serde(rename = "checksum")] pub checksum: Option, + /// Gets or sets a timestamp of when the binary was built. #[serde(rename = "timestamp")] pub timestamp: Option, + /// Gets or sets the repository name. #[serde(rename = "repositoryName")] pub repository_name: String, + /// Gets or sets the repository url. #[serde(rename = "repositoryUrl")] pub repository_url: String, } +/// Used to hold information about a user's list of configured virtual folders. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct VirtualFolderInfo { + /// Gets or sets the name. #[serde(rename = "Name")] pub name: Option, + /// Gets or sets the locations. #[serde(rename = "Locations")] pub locations: Option>, + /// Gets or sets the type of the collection. #[serde(rename = "CollectionType")] pub collection_type: Option, #[serde(rename = "LibraryOptions")] pub library_options: Option, + /// Gets or sets the item identifier. #[serde(rename = "ItemId")] pub item_id: Option, + /// Gets or sets the primary image item identifier. #[serde(rename = "PrimaryImageItemId")] pub primary_image_item_id: Option, #[serde(rename = "RefreshProgress")] @@ -4371,10 +5928,13 @@ pub struct VirtualFolderInfo { #[serde(rename = "RefreshStatus")] pub refresh_status: Option, } +/// Provides the MAC address and port for wake-on-LAN functionality. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] pub struct WakeOnLanInfo { + /// Gets the MAC address of the device. #[serde(rename = "MacAddress")] pub mac_address: Option, + /// Gets or sets the wake-on-LAN port. #[serde(rename = "Port")] pub port: i32, } @@ -4407,6 +5967,7 @@ pub enum ApiName { #[serde(rename = "Simkl")] Simkl, } +/// An enum representing formats of spatial audio. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] #[serde(rename_all = "PascalCase")] pub enum AudioSpatialFormat { @@ -4417,6 +5978,7 @@ pub enum AudioSpatialFormat { #[serde(rename = "DTSX")] Dtsx, } +/// The base item kind. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] #[serde(rename_all = "PascalCase")] pub enum BaseItemKind { @@ -4543,6 +6105,7 @@ pub enum ChannelMediaType { #[serde(rename = "Photo")] Photo, } +/// Enum ChannelType. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] #[serde(rename_all = "PascalCase")] pub enum ChannelType { @@ -4561,6 +6124,7 @@ pub enum CodecType { #[serde(rename = "Audio")] Audio, } +/// Collection type. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] #[serde(rename_all = "PascalCase")] pub enum CollectionType { @@ -4591,6 +6155,7 @@ pub enum CollectionType { #[serde(rename = "folders")] Folders, } +/// The collection type options. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] #[serde(rename_all = "PascalCase")] pub enum CollectionTypeOptions { @@ -4639,6 +6204,7 @@ pub enum DayPattern { #[serde(rename = "Weekends")] Weekends, } +/// Enum containing deinterlace methods. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] #[serde(rename_all = "PascalCase")] pub enum DeinterlaceMethod { @@ -4661,6 +6227,7 @@ pub enum DlnaProfileType { #[serde(rename = "Lyric")] Lyric, } +/// An enum representing an algorithm to downmix surround sound to stereo. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] #[serde(rename_all = "PascalCase")] pub enum DownMixStereoAlgorithms { @@ -4675,6 +6242,7 @@ pub enum DownMixStereoAlgorithms { #[serde(rename = "Ac4")] Ac4, } +/// An enum that represents a day of the week, weekdays, weekends, or all days. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] #[serde(rename_all = "PascalCase")] pub enum DynamicDayOfWeek { @@ -4699,6 +6267,7 @@ pub enum DynamicDayOfWeek { #[serde(rename = "Weekend")] Weekend, } +/// An enum representing the options to disable embedded subs. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] #[serde(rename_all = "PascalCase")] pub enum EmbeddedSubtitleOptions { @@ -4711,6 +6280,7 @@ pub enum EmbeddedSubtitleOptions { #[serde(rename = "AllowNone")] AllowNone, } +/// Enum containing encoder presets. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] #[serde(rename_all = "PascalCase")] pub enum EncoderPreset { @@ -4745,6 +6315,7 @@ pub enum EncodingContext { #[serde(rename = "Static")] Static, } +/// The specific media type of an MediaBrowser.Model.Providers.ExternalIdInfo. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] #[serde(rename_all = "PascalCase")] pub enum ExternalIdMediaType { @@ -4803,6 +6374,7 @@ pub enum ExtraType { #[serde(rename = "Short")] Short, } +/// Enum FileSystemEntryType. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] #[serde(rename_all = "PascalCase")] pub enum FileSystemEntryType { @@ -4825,6 +6397,7 @@ pub enum ForgotPasswordAction { #[serde(rename = "InNetworkRequired")] InNetworkRequired, } +/// This exists simply to identify a set of known commands. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] #[serde(rename_all = "PascalCase")] pub enum GeneralCommandType { @@ -4915,6 +6488,7 @@ pub enum GeneralCommandType { #[serde(rename = "SetPlaybackOrder")] SetPlaybackOrder, } +/// Enum GroupQueueMode. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] #[serde(rename_all = "PascalCase")] pub enum GroupQueueMode { @@ -4923,6 +6497,7 @@ pub enum GroupQueueMode { #[serde(rename = "QueueNext")] QueueNext, } +/// Enum GroupRepeatMode. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] #[serde(rename_all = "PascalCase")] pub enum GroupRepeatMode { @@ -4933,6 +6508,7 @@ pub enum GroupRepeatMode { #[serde(rename = "RepeatNone")] RepeatNone, } +/// Enum GroupShuffleMode. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] #[serde(rename_all = "PascalCase")] pub enum GroupShuffleMode { @@ -4941,6 +6517,7 @@ pub enum GroupShuffleMode { #[serde(rename = "Shuffle")] Shuffle, } +/// Enum GroupState. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] #[serde(rename_all = "PascalCase")] pub enum GroupStateType { @@ -4953,6 +6530,7 @@ pub enum GroupStateType { #[serde(rename = "Playing")] Playing, } +/// Enum GroupUpdateType. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] #[serde(rename_all = "PascalCase")] pub enum GroupUpdateType { @@ -4979,6 +6557,7 @@ pub enum GroupUpdateType { #[serde(rename = "LibraryAccessDenied")] LibraryAccessDenied, } +/// Enum containing hardware acceleration types. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] #[serde(rename_all = "PascalCase")] pub enum HardwareAccelerationType { @@ -4999,6 +6578,7 @@ pub enum HardwareAccelerationType { #[serde(rename = "rkmpp")] Rkmpp, } +/// Enum ImageOutputFormat. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] #[serde(rename_all = "PascalCase")] pub enum ImageFormat { @@ -5035,6 +6615,7 @@ pub enum ImageOrientation { #[serde(rename = "LeftBottom")] LeftBottom, } +/// Enum ImageResolution. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] #[serde(rename_all = "PascalCase")] pub enum ImageResolution { @@ -5065,6 +6646,7 @@ pub enum ImageSavingConvention { #[serde(rename = "Compatible")] Compatible, } +/// Enum ImageType. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] #[serde(rename_all = "PascalCase")] pub enum ImageType { @@ -5095,6 +6677,7 @@ pub enum ImageType { #[serde(rename = "Profile")] Profile, } +/// Enum IsoType. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] #[serde(rename_all = "PascalCase")] pub enum IsoType { @@ -5103,6 +6686,7 @@ pub enum IsoType { #[serde(rename = "BluRay")] BluRay, } +/// Used to control the data that gets attached to DtoBaseItems. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] #[serde(rename_all = "PascalCase")] pub enum ItemFields { @@ -5227,6 +6811,7 @@ pub enum ItemFields { #[serde(rename = "SpecialFeatureCount")] SpecialFeatureCount, } +/// Enum ItemFilter. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] #[serde(rename_all = "PascalCase")] pub enum ItemFilter { @@ -5249,6 +6834,7 @@ pub enum ItemFilter { #[serde(rename = "IsFavoriteOrLikes")] IsFavoriteOrLikes, } +/// These represent sort orders. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] #[serde(rename_all = "PascalCase")] pub enum ItemSortBy { @@ -5337,6 +6923,7 @@ pub enum LiveTvServiceStatus { #[serde(rename = "Unavailable")] Unavailable, } +/// Enum LocationType. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] #[serde(rename_all = "PascalCase")] pub enum LocationType { @@ -5385,6 +6972,7 @@ pub enum MediaProtocol { #[serde(rename = "Ftp")] Ftp, } +/// Defines the types of content an individual Jellyfin.Data.Entities.MediaSegment represents. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] #[serde(rename_all = "PascalCase")] pub enum MediaSegmentType { @@ -5411,6 +6999,8 @@ pub enum MediaSourceType { #[serde(rename = "Placeholder")] Placeholder, } +/** Media streaming protocol. +Lowercase for backwards compatibility.*/ #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] #[serde(rename_all = "PascalCase")] pub enum MediaStreamProtocol { @@ -5419,6 +7009,7 @@ pub enum MediaStreamProtocol { #[serde(rename = "hls")] Hls, } +/// Enum MediaStreamType. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] #[serde(rename_all = "PascalCase")] pub enum MediaStreamType { @@ -5435,6 +7026,7 @@ pub enum MediaStreamType { #[serde(rename = "Lyric")] Lyric, } +/// Media types. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] #[serde(rename_all = "PascalCase")] pub enum MediaType { @@ -5449,6 +7041,7 @@ pub enum MediaType { #[serde(rename = "Book")] Book, } +/// Enum MetadataFields. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] #[serde(rename_all = "PascalCase")] pub enum MetadataField { @@ -5495,6 +7088,7 @@ pub enum ParameterInclude { #[serde(rename = "Https")] Https, } +/// The person kind. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] #[serde(rename_all = "PascalCase")] pub enum PersonKind { @@ -5567,6 +7161,7 @@ pub enum PlaybackErrorCode { #[serde(rename = "RateLimitExceeded")] RateLimitExceeded, } +/// Enum PlaybackOrder. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] #[serde(rename_all = "PascalCase")] pub enum PlaybackOrder { @@ -5575,6 +7170,7 @@ pub enum PlaybackOrder { #[serde(rename = "Shuffle")] Shuffle, } +/// Enum PlaybackRequestType. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] #[serde(rename_all = "PascalCase")] pub enum PlaybackRequestType { @@ -5613,6 +7209,7 @@ pub enum PlaybackRequestType { #[serde(rename = "IgnoreWait")] IgnoreWait, } +/// Enum PlayCommand. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] #[serde(rename_all = "PascalCase")] pub enum PlayCommand { @@ -5637,6 +7234,7 @@ pub enum PlayMethod { #[serde(rename = "DirectPlay")] DirectPlay, } +/// Enum PlayQueueUpdateReason. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] #[serde(rename_all = "PascalCase")] pub enum PlayQueueUpdateReason { @@ -5661,6 +7259,7 @@ pub enum PlayQueueUpdateReason { #[serde(rename = "ShuffleMode")] ShuffleMode, } +/// Enum PlaystateCommand. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] #[serde(rename_all = "PascalCase")] pub enum PlaystateCommand { @@ -5683,6 +7282,7 @@ pub enum PlaystateCommand { #[serde(rename = "PlayPause")] PlayPause, } +/// Plugin load status. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] #[serde(rename_all = "PascalCase")] pub enum PluginStatus { @@ -5851,6 +7451,7 @@ pub enum RepeatMode { #[serde(rename = "RepeatOne")] RepeatOne, } +/// An enum representing the axis that should be scrolled. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] #[serde(rename_all = "PascalCase")] pub enum ScrollDirection { @@ -5859,6 +7460,7 @@ pub enum ScrollDirection { #[serde(rename = "Vertical")] Vertical, } +/// Enum SendCommandType. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] #[serde(rename_all = "PascalCase")] pub enum SendCommandType { @@ -5871,6 +7473,7 @@ pub enum SendCommandType { #[serde(rename = "Seek")] Seek, } +/// The status of a series. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] #[serde(rename_all = "PascalCase")] pub enum SeriesStatus { @@ -5881,6 +7484,7 @@ pub enum SeriesStatus { #[serde(rename = "Unreleased")] Unreleased, } +/// The different kinds of messages that are used in the WebSocket api. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] #[serde(rename_all = "PascalCase")] pub enum SessionMessageType { @@ -5953,6 +7557,7 @@ pub enum SessionMessageType { #[serde(rename = "KeepAlive")] KeepAlive, } +/// An enum representing the sorting order. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] #[serde(rename_all = "PascalCase")] pub enum SortOrder { @@ -5971,6 +7576,7 @@ pub enum Status { #[serde(rename = "Both")] Both, } +/// Delivery method to use during playback of a specific subtitle format. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] #[serde(rename_all = "PascalCase")] pub enum SubtitleDeliveryMethod { @@ -5985,6 +7591,7 @@ pub enum SubtitleDeliveryMethod { #[serde(rename = "Drop")] Drop, } +/// An enum representing a subtitle playback mode. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] #[serde(rename_all = "PascalCase")] pub enum SubtitlePlaybackMode { @@ -6007,6 +7614,7 @@ pub enum SyncAction { #[serde(rename = "UpdateJellyfin")] UpdateJellyfin, } +/// Enum SyncPlayUserAccessType. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] #[serde(rename_all = "PascalCase")] pub enum SyncPlayUserAccessType { @@ -6017,6 +7625,7 @@ pub enum SyncPlayUserAccessType { #[serde(rename = "None")] None, } +/// Enum TaskCompletionStatus. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] #[serde(rename_all = "PascalCase")] pub enum TaskCompletionStatus { @@ -6029,6 +7638,7 @@ pub enum TaskCompletionStatus { #[serde(rename = "Aborted")] Aborted, } +/// Enum TaskState. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] #[serde(rename_all = "PascalCase")] pub enum TaskState { @@ -6039,6 +7649,7 @@ pub enum TaskState { #[serde(rename = "Running")] Running, } +/// Enum containing tonemapping algorithms. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] #[serde(rename_all = "PascalCase")] pub enum TonemappingAlgorithm { @@ -6059,6 +7670,7 @@ pub enum TonemappingAlgorithm { #[serde(rename = "bt2390")] Bt2390, } +/// Enum containing tonemapping modes. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] #[serde(rename_all = "PascalCase")] pub enum TonemappingMode { @@ -6073,6 +7685,7 @@ pub enum TonemappingMode { #[serde(rename = "itp")] Itp, } +/// Enum containing tonemapping ranges. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] #[serde(rename_all = "PascalCase")] pub enum TonemappingRange { @@ -6157,6 +7770,7 @@ pub enum TransportStreamTimestamp { #[serde(rename = "Valid")] Valid, } +/// Enum TrickplayScanBehavior. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] #[serde(rename_all = "PascalCase")] pub enum TrickplayScanBehavior { @@ -6165,6 +7779,7 @@ pub enum TrickplayScanBehavior { #[serde(rename = "NonBlocking")] NonBlocking, } +/// An enum representing an unrated item. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] #[serde(rename_all = "PascalCase")] pub enum UnratedItem { @@ -6201,6 +7816,7 @@ pub enum Video3DFormat { #[serde(rename = "MVC")] Mvc, } +/// An enum representing video ranges. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] #[serde(rename_all = "PascalCase")] pub enum VideoRange { @@ -6211,6 +7827,7 @@ pub enum VideoRange { #[serde(rename = "HDR")] Hdr, } +/// An enum representing types of video ranges. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] #[serde(rename_all = "PascalCase")] pub enum VideoRangeType { @@ -6233,6 +7850,7 @@ pub enum VideoRangeType { #[serde(rename = "HDR10Plus")] Hdr10Plus, } +/// Enum VideoType. #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] #[serde(rename_all = "PascalCase")] pub enum VideoType { diff --git a/src/main.rs b/src/main.rs index b59974d..014d365 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,5 +1,4 @@ mod errors; -mod ui; use api::{JellyfinClient, JellyfinConfig}; use errors::*; @@ -23,7 +22,10 @@ pub async fn main() -> Result<()> { .await .change_context(Error)?; - ui::ui(jellyfin); + #[cfg(feature = "iced")] + ui_iced::ui(jellyfin); + #[cfg(feature = "gpui")] + ui_gpui::ui(jellyfin); Ok(()) } diff --git a/src/target/rust-analyzer/flycheck0/stderr b/src/target/rust-analyzer/flycheck0/stderr new file mode 100644 index 0000000..6e4776d --- /dev/null +++ b/src/target/rust-analyzer/flycheck0/stderr @@ -0,0 +1,10 @@ + 0.163420368s INFO prepare_target{force=false package_id=jello v0.1.0 (/home/servius/Projects/jello) target="jello"}: cargo::core::compiler::fingerprint: stale: missing "/home/servius/Projects/jello/src/ui.rs" + 0.163649225s INFO prepare_target{force=false package_id=jello v0.1.0 (/home/servius/Projects/jello) target="jello"}: cargo::core::compiler::fingerprint: fingerprint dirty for jello v0.1.0 (/home/servius/Projects/jello)/Check { test: false }/TargetInner { name: "jello", doc: true, ..: with_path("/home/servius/Projects/jello/src/main.rs", Edition2024) } + 0.163656449s INFO prepare_target{force=false package_id=jello v0.1.0 (/home/servius/Projects/jello) target="jello"}: cargo::core::compiler::fingerprint: dirty: FsStatusOutdated(StaleItem(MissingFile { path: "/home/servius/Projects/jello/src/ui.rs" })) + 0.177569239s INFO prepare_target{force=false package_id=jello v0.1.0 (/home/servius/Projects/jello) target="jello"}: cargo::core::compiler::fingerprint: stale: missing "/home/servius/Projects/jello/src/ui.rs" + 0.177598807s INFO prepare_target{force=false package_id=jello v0.1.0 (/home/servius/Projects/jello) target="jello"}: cargo::core::compiler::fingerprint: fingerprint dirty for jello v0.1.0 (/home/servius/Projects/jello)/Check { test: true }/TargetInner { name: "jello", doc: true, ..: with_path("/home/servius/Projects/jello/src/main.rs", Edition2024) } + 0.177604305s INFO prepare_target{force=false package_id=jello v0.1.0 (/home/servius/Projects/jello) target="jello"}: cargo::core::compiler::fingerprint: dirty: FsStatusOutdated(StaleItem(MissingFile { path: "/home/servius/Projects/jello/src/ui.rs" })) + Checking jello v0.1.0 (/home/servius/Projects/jello) +error: could not compile `jello` (bin "jello" test) due to 1 previous error; 2 warnings emitted +warning: build failed, waiting for other jobs to finish... +error: could not compile `jello` (bin "jello") due to 1 previous error; 2 warnings emitted diff --git a/src/target/rust-analyzer/flycheck0/stdout b/src/target/rust-analyzer/flycheck0/stdout new file mode 100644 index 0000000..da6ce56 --- /dev/null +++ b/src/target/rust-analyzer/flycheck0/stdout @@ -0,0 +1,754 @@ +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.103","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.103/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.103/build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","proc-macro"],"filenames":["/home/servius/.cache/cargo/target/debug/build/proc-macro2-dee2de6a12b324eb/build-script-build"],"executable":null,"fresh":true} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.103","linked_libs":[],"linked_paths":[],"cfgs":["wrap_proc_macro","proc_macro_span","proc_macro_span_location","proc_macro_span_file"],"env":[],"out_dir":"/home/servius/.cache/cargo/target/debug/build/proc-macro2-22c25bf1927a867b/out"} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#quote@1.0.42","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.42/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.42/build.rs","edition":"2018","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","proc-macro"],"filenames":["/home/servius/.cache/cargo/target/debug/build/quote-f14c48d1c4fb57ce/build-script-build"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.22","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.22/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"unicode_ident","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.22/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libunicode_ident-12c495887fb81e30.rlib","/home/servius/.cache/cargo/target/debug/deps/libunicode_ident-12c495887fb81e30.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde_core@1.0.228","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","rc","result","std"],"filenames":["/home/servius/.cache/cargo/target/debug/build/serde_core-a0724005e049be2f/build-script-build"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.4","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cfg-if-1.0.4/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"cfg_if","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cfg-if-1.0.4/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libcfg_if-4a7d0854554f50b2.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#libc@0.2.177","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","extra_traits","std"],"filenames":["/home/servius/.cache/cargo/target/debug/build/libc-6a11126bfed3e836/build-script-build"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde@1.0.228","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.228/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.228/build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","derive","rc","serde_derive","std"],"filenames":["/home/servius/.cache/cargo/target/debug/build/serde-cfad675e8c81457a/build-script-build"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#autocfg@1.5.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/autocfg-1.5.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"autocfg","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/autocfg-1.5.0/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libautocfg-3b49e0afa777d415.rlib","/home/servius/.cache/cargo/target/debug/deps/libautocfg-3b49e0afa777d415.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#bitflags@2.10.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.10.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"bitflags","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.10.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libbitflags-e94d7c324cebb93e.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#typeid@1.0.3","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typeid-1.0.3/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typeid-1.0.3/build.rs","edition":"2018","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/build/typeid-f6fed693391dc248/build-script-build"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#libm@0.2.15","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libm-0.2.15/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libm-0.2.15/build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["arch","default"],"filenames":["/home/servius/.cache/cargo/target/debug/build/libm-d55bc591eb6c8f56/build-script-build"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#erased-serde@0.4.9","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/erased-serde-0.4.9/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/erased-serde-0.4.9/build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","std"],"filenames":["/home/servius/.cache/cargo/target/debug/build/erased-serde-1044c467d9065ca2/build-script-build"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#pin-project-lite@0.2.16","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-lite-0.2.16/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"pin_project_lite","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-lite-0.2.16/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libpin_project_lite-d39827a1100fb9ef.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#version_check@0.9.5","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"version_check","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libversion_check-2571cf324060ec01.rlib","/home/servius/.cache/cargo/target/debug/deps/libversion_check-2571cf324060ec01.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#futures-core@0.3.31","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-core-0.3.31/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"futures_core","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-core-0.3.31/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libfutures_core-928ec4daade86234.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#shlex@1.3.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/shlex-1.3.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"shlex","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/shlex-1.3.0/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libshlex-e8c7a80568050100.rlib","/home/servius/.cache/cargo/target/debug/deps/libshlex-e8c7a80568050100.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#find-msvc-tools@0.1.4","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/find-msvc-tools-0.1.4/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"find_msvc_tools","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/find-msvc-tools-0.1.4/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libfind_msvc_tools-0f620299a63606d0.rlib","/home/servius/.cache/cargo/target/debug/deps/libfind_msvc_tools-0f620299a63606d0.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.3/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"once_cell","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.3/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","race","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libonce_cell-a196c0519b93602c.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.6","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.7.6/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"memchr","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.7.6/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libmemchr-713a1a81c0212ccf.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/smallvec-1.15.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"smallvec","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/smallvec-1.15.1/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["const_generics","const_new","union","write"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libsmallvec-151bf4655fb0fdea.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.21","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/home/servius/.cache/cargo/target/debug/build/crossbeam-utils-5887ca59ff28d947/build-script-build"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#memchr@2.7.6","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.7.6/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"memchr","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.7.6/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libmemchr-4a8460f481b65a77.rlib","/home/servius/.cache/cargo/target/debug/deps/libmemchr-4a8460f481b65a77.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#futures-io@0.3.31","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-io-0.3.31/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"futures_io","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-io-0.3.31/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libfutures_io-f01d07d5f3284987.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#slab@0.4.11","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/slab-0.4.11/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"slab","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/slab-0.4.11/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libslab-0f7d78e81fd9c627.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#typenum@1.19.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.19.0/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.19.0/build.rs","edition":"2018","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/build/typenum-1d112de01353164c/build-script-build"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#pkg-config@0.3.32","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pkg-config-0.3.32/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"pkg_config","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pkg-config-0.3.32/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libpkg_config-27318cb7412d9ab4.rlib","/home/servius/.cache/cargo/target/debug/deps/libpkg_config-27318cb7412d9ab4.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#zerocopy@0.8.27","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["derive","simd","zerocopy-derive"],"filenames":["/home/servius/.cache/cargo/target/debug/build/zerocopy-a199aabd36938a4a/build-script-build"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#stable_deref_trait@1.2.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/stable_deref_trait-1.2.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"stable_deref_trait","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/stable_deref_trait-1.2.1/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libstable_deref_trait-5d898022c3de16af.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rustix@1.1.2","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.2/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.2/build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","event","fs","net","pipe","process","shm","std","time"],"filenames":["/home/servius/.cache/cargo/target/debug/build/rustix-ccedce1488c28264/build-script-build"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#parking@2.2.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking-2.2.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"parking","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking-2.2.1/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libparking-6e0568604af2104d.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#linux-raw-sys@0.11.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/linux-raw-sys-0.11.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"linux_raw_sys","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/linux-raw-sys-0.11.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["auxvec","elf","errno","general","if_ether","ioctl","net","netlink","no_std","prctl","xdp"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/liblinux_raw_sys-6bdffe141167380d.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#cfg_aliases@0.2.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cfg_aliases-0.2.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"cfg_aliases","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cfg_aliases-0.2.1/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libcfg_aliases-07102a85dafba9e1.rlib","/home/servius/.cache/cargo/target/debug/deps/libcfg_aliases-07102a85dafba9e1.rmeta"],"executable":null,"fresh":true} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#quote@1.0.42","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"/home/servius/.cache/cargo/target/debug/build/quote-1f57343a0e89510e/out"} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.103","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.103/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"proc_macro2","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.103/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","proc-macro"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libproc_macro2-642ab441cc4d7c8c.rlib","/home/servius/.cache/cargo/target/debug/deps/libproc_macro2-642ab441cc4d7c8c.rmeta"],"executable":null,"fresh":true} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde_core@1.0.228","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"/home/servius/.cache/cargo/target/debug/build/serde_core-d0cdee4b3d41c445/out"} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#libc@0.2.177","linked_libs":[],"linked_paths":[],"cfgs":["freebsd12"],"env":[],"out_dir":"/home/servius/.cache/cargo/target/debug/build/libc-37f6bcada5f6af7e/out"} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde@1.0.228","linked_libs":[],"linked_paths":[],"cfgs":["if_docsrs_then_no_serde_core"],"env":[],"out_dir":"/home/servius/.cache/cargo/target/debug/build/serde-c535deb716d558b6/out"} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#typeid@1.0.3","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"/home/servius/.cache/cargo/target/debug/build/typeid-1abeee25eaf7e01b/out"} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#libm@0.2.15","linked_libs":[],"linked_paths":[],"cfgs":["arch_enabled"],"env":[["CFG_CARGO_FEATURES","[\"arch\", \"default\"]"],["CFG_OPT_LEVEL","0"],["CFG_TARGET_FEATURES","[\"fxsr\", \"sse\", \"sse2\", \"x87\"]"]],"out_dir":"/home/servius/.cache/cargo/target/debug/build/libm-e52161f55c4e7418/out"} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#erased-serde@0.4.9","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"/home/servius/.cache/cargo/target/debug/build/erased-serde-a34167273ecc4df5/out"} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#cc@1.2.45","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.45/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"cc","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.2.45/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libcc-ec89051a022d4295.rlib","/home/servius/.cache/cargo/target/debug/deps/libcc-ec89051a022d4295.rmeta"],"executable":null,"fresh":true} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.21","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"/home/servius/.cache/cargo/target/debug/build/crossbeam-utils-124310733090f593/out"} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#typenum@1.19.0","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"/home/servius/.cache/cargo/target/debug/build/typenum-c98bfe5758206a9e/out"} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","i128","libm","std"],"filenames":["/home/servius/.cache/cargo/target/debug/build/num-traits-398c5331e8c4ae03/build-script-build"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#generic-array@0.14.7","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/build.rs","edition":"2015","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["more_lengths"],"filenames":["/home/servius/.cache/cargo/target/debug/build/generic-array-8457ed2fe4614263/build-script-build"],"executable":null,"fresh":true} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#zerocopy@0.8.27","linked_libs":[],"linked_paths":[],"cfgs":["zerocopy_core_error_1_81_0","zerocopy_diagnostic_on_unimplemented_1_78_0","zerocopy_generic_bounds_in_const_fn_1_61_0","zerocopy_target_has_atomics_1_60_0","zerocopy_aarch64_simd_1_59_0","zerocopy_panic_in_const_and_vec_try_reserve_1_57_0"],"env":[],"out_dir":"/home/servius/.cache/cargo/target/debug/build/zerocopy-42ad28b1674b9fdc/out"} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#rustix@1.1.2","linked_libs":[],"linked_paths":[],"cfgs":["static_assertions","lower_upper_exp_for_non_zero","rustc_diagnostics","linux_raw_dep","linux_raw","linux_like","linux_kernel"],"env":[],"out_dir":"/home/servius/.cache/cargo/target/debug/build/rustix-597f4141e93063b6/out"} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#futures-sink@0.3.31","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-sink-0.3.31/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"futures_sink","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-sink-0.3.31/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libfutures_sink-0305eccffc39046b.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#atomic-waker@1.1.2","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/atomic-waker-1.1.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"atomic_waker","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/atomic-waker-1.1.2/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libatomic_waker-20260b4402dc237a.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#arrayvec@0.7.6","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/arrayvec-0.7.6/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"arrayvec","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/arrayvec-0.7.6/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libarrayvec-8f09842db1138ec8.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#pin-utils@0.1.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-utils-0.1.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"pin_utils","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-utils-0.1.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libpin_utils-7f3687f361877058.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#fastrand@2.3.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fastrand-2.3.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"fastrand","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fastrand-2.3.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libfastrand-df90f19ce057646e.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.16.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"hashbrown","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libhashbrown-6c04434eec683bf1.rlib","/home/servius/.cache/cargo/target/debug/deps/libhashbrown-6c04434eec683bf1.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#equivalent@1.0.2","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/equivalent-1.0.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"equivalent","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/equivalent-1.0.2/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libequivalent-5a88bd14f385988f.rlib","/home/servius/.cache/cargo/target/debug/deps/libequivalent-5a88bd14f385988f.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#bytes@1.10.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.10.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"bytes","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.10.1/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libbytes-9d3487932bdbd853.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#equivalent@1.0.2","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/equivalent-1.0.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"equivalent","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/equivalent-1.0.2/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libequivalent-dbd0be9061b7acbc.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#futures-task@0.3.31","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-task-0.3.31/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"futures_task","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-task-0.3.31/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libfutures_task-293175f47f93219a.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.15","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itoa-1.0.15/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"itoa","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itoa-1.0.15/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libitoa-a41e1811ddda7bbe.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.16.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"hashbrown","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libhashbrown-14a51d3705e84ead.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#libloading@0.8.9","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libloading-0.8.9/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"libloading","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libloading-0.8.9/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/liblibloading-58d8c954c8818255.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#simd-adler32@0.3.7","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/simd-adler32-0.3.7/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"simd_adler32","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/simd-adler32-0.3.7/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["const-generics","default","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libsimd_adler32-94883339996db22b.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#writeable@0.6.2","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.6.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"writeable","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.6.2/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libwriteable-f9d1989ed7be4f89.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/build/thiserror-faab551a6ed83879/build-script-build"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#litemap@0.8.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/litemap-0.8.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"litemap","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/litemap-0.8.1/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/liblitemap-a79259272ac7b40b.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#quote@1.0.42","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.42/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"quote","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.42/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","proc-macro"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libquote-59475313c600b6ab.rlib","/home/servius/.cache/cargo/target/debug/deps/libquote-59475313c600b6ab.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#libc@0.2.177","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"libc","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.177/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","extra_traits","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/liblibc-55ce83cc98d41583.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde_core@1.0.228","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"serde_core","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","rc","result","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libserde_core-d04400ee9273bba4.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#typeid@1.0.3","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typeid-1.0.3/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"typeid","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typeid-1.0.3/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libtypeid-7577f10af5bc4bd0.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#libm@0.2.15","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libm-0.2.15/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"libm","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libm-0.2.15/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["arch","default"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/liblibm-fe22615005cd65c3.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#crossbeam-utils@0.8.21","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"crossbeam_utils","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libcrossbeam_utils-a4b60e4d8e35cd09.rmeta"],"executable":null,"fresh":true} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19","linked_libs":[],"linked_paths":[],"cfgs":["has_total_cmp"],"env":[],"out_dir":"/home/servius/.cache/cargo/target/debug/build/num-traits-7a133b546312e626/out"} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#generic-array@0.14.7","linked_libs":[],"linked_paths":[],"cfgs":["relaxed_coherence"],"env":[],"out_dir":"/home/servius/.cache/cargo/target/debug/build/generic-array-3ae9e17769bb82ee/out"} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde_core@1.0.228","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"serde_core","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","rc","result","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libserde_core-e05f4da6e4a6cde7.rlib","/home/servius/.cache/cargo/target/debug/deps/libserde_core-e05f4da6e4a6cde7.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rustix@1.1.2","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rustix","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.2/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","event","fs","net","pipe","process","shm","std","time"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/librustix-7d4b5ae04592ad95.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#typenum@1.19.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.19.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"typenum","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.19.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libtypenum-1fa0af1da597c9f5.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#futures-channel@0.3.31","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-channel-0.3.31/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"futures_channel","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-channel-0.3.31/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","futures-sink","sink","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libfutures_channel-0e54dce5535ad9c5.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#futures-lite@2.6.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-lite-2.6.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"futures_lite","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-lite-2.6.1/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","fastrand","futures-io","parking","race","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libfutures_lite-026070981cd94305.rmeta"],"executable":null,"fresh":true} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69","linked_libs":[],"linked_paths":[],"cfgs":["error_generic_member_access"],"env":[],"out_dir":"/home/servius/.cache/cargo/target/debug/build/thiserror-4dbdbab3075919e0/out"} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tracing-core@0.1.34","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.34/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tracing_core","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.34/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","once_cell","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libtracing_core-7818f848ebfdd312.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#percent-encoding@2.3.2","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/percent-encoding-2.3.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"percent_encoding","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/percent-encoding-2.3.2/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libpercent_encoding-fab0d919935d0128.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#icu_properties_data@2.1.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.1/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.1/build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/build/icu_properties_data-e2fc409d3fbabe1b/build-script-build"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.4","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cfg-if-1.0.4/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"cfg_if","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cfg-if-1.0.4/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libcfg_if-9d10986c5e71c5c4.rlib","/home/servius/.cache/cargo/target/debug/deps/libcfg_if-9d10986c5e71c5c4.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#icu_normalizer_data@2.1.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.1.1/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.1.1/build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/build/icu_normalizer_data-907121846192385b/build-script-build"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#async-io@2.6.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-io-2.6.0/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-io-2.6.0/build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/build/async-io-56d0a451e54d8ce0/build-script-build"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#adler2@2.0.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/adler2-2.0.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"adler2","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/adler2-2.0.1/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libadler2-629e1103cd8b3ee5.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#subtle@2.6.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/subtle-2.6.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"subtle","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/subtle-2.6.1/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","i128","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libsubtle-40e28f5b22032731.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#async-task@4.7.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-task-4.7.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"async_task","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-task-4.7.1/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libasync_task-ae2c1437f8da87f3.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#crc32fast@1.5.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crc32fast-1.5.0/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crc32fast-1.5.0/build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/home/servius/.cache/cargo/target/debug/build/crc32fast-70312237c9b6715d/build-script-build"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#heck@0.5.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.5.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"heck","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.5.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libheck-20e948fc986d72b6.rlib","/home/servius/.cache/cargo/target/debug/deps/libheck-20e948fc986d72b6.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#typenum@1.19.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.19.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"typenum","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.19.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libtypenum-ee12dd3ab3cbe083.rlib","/home/servius/.cache/cargo/target/debug/deps/libtypenum-ee12dd3ab3cbe083.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#winnow@0.7.13","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.7.13/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"winnow","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.7.13/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libwinnow-0e6dde3069cd9a4a.rlib","/home/servius/.cache/cargo/target/debug/deps/libwinnow-0e6dde3069cd9a4a.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#piper@0.2.4","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/piper-0.2.4/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"piper","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/piper-0.2.4/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","futures-io","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libpiper-75d4e2ee990617f1.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#getrandom@0.3.4","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.4/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.4/build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std"],"filenames":["/home/servius/.cache/cargo/target/debug/build/getrandom-4d58cc1580eee429/build-script-build"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.17","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.17/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.17/build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/home/servius/.cache/cargo/target/debug/build/thiserror-c73a6dcbf85ebb6c/build-script-build"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.22","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.22/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"unicode_ident","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.22/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libunicode_ident-878b9ccc643431f1.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#either@1.15.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/either-1.15.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"either","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/either-1.15.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std","use_std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libeither-d77258e99482ff8a.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#syn@2.0.110","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.110/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"syn","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.110/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["clone-impls","default","derive","extra-traits","fold","full","parsing","printing","proc-macro","visit","visit-mut"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libsyn-5fae08d6f5255c1d.rlib","/home/servius/.cache/cargo/target/debug/deps/libsyn-5fae08d6f5255c1d.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#erased-serde@0.4.9","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/erased-serde-0.4.9/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"erased_serde","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/erased-serde-0.4.9/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/liberased_serde-a3b3c244d1476dcc.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"num_traits","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","i128","libm","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libnum_traits-078b14b34f870679.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#getrandom@0.2.16","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.16/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"getrandom","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.16/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["js","js-sys","rdrand","std","wasm-bindgen"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libgetrandom-a9a25f5bff6ec3b3.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#concurrent-queue@2.5.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/concurrent-queue-2.5.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"concurrent_queue","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/concurrent-queue-2.5.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libconcurrent_queue-63e24a5f59a1589b.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#indexmap@2.12.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.12.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"indexmap","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.12.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","serde","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libindexmap-d7e5aba14bebff09.rlib","/home/servius/.cache/cargo/target/debug/deps/libindexmap-d7e5aba14bebff09.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#generic-array@0.14.7","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"generic_array","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["more_lengths"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libgeneric_array-e96b9ba4bc52a192.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#indexmap@2.12.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.12.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"indexmap","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.12.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","serde","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libindexmap-c3771688348447dd.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#socket2@0.6.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/socket2-0.6.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"socket2","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/socket2-0.6.1/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["all"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libsocket2-78192096f48312be.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#polling@3.11.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/polling-3.11.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"polling","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/polling-3.11.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libpolling-2a9e87edf294d18a.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#mio@1.1.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.1.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"mio","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.1.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["net","os-ext","os-poll"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libmio-bd1d7439de164130.rmeta"],"executable":null,"fresh":true} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#icu_properties_data@2.1.1","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"/home/servius/.cache/cargo/target/debug/build/icu_properties_data-b3571c91288928aa/out"} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#icu_normalizer_data@2.1.1","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"/home/servius/.cache/cargo/target/debug/build/icu_normalizer_data-248006f37256b5ee/out"} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#crc32fast@1.5.0","linked_libs":[],"linked_paths":[],"cfgs":["stable_arm_crc32_intrinsics"],"env":[],"out_dir":"/home/servius/.cache/cargo/target/debug/build/crc32fast-aeb4298b41ce9e55/out"} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#miniz_oxide@0.8.9","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/miniz_oxide-0.8.9/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"miniz_oxide","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/miniz_oxide-0.8.9/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","simd","simd-adler32","with-alloc"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libminiz_oxide-b9985a2cb526667d.rmeta"],"executable":null,"fresh":true} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#async-io@2.6.0","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"/home/servius/.cache/cargo/target/debug/build/async-io-568e81d95018571b/out"} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#generic-array@0.14.7","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"generic_array","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["more_lengths"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libgeneric_array-1849e65c413ab70f.rlib","/home/servius/.cache/cargo/target/debug/deps/libgeneric_array-1849e65c413ab70f.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#fnv@1.0.7","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fnv-1.0.7/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"fnv","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fnv-1.0.7/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libfnv-77c502cd42f57b8f.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#form_urlencoded@1.2.2","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/form_urlencoded-1.2.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"form_urlencoded","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/form_urlencoded-1.2.2/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":false},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libform_urlencoded-b9a49511907f7b9c.rmeta"],"executable":null,"fresh":true} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.17","linked_libs":[],"linked_paths":[],"cfgs":["error_generic_member_access"],"env":[],"out_dir":"/home/servius/.cache/cargo/target/debug/build/thiserror-431281c637257f87/out"} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#toml_parser@1.0.4","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_parser-1.0.4/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"toml_parser","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_parser-1.0.4/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libtoml_parser-5749a614a508a8c9.rlib","/home/servius/.cache/cargo/target/debug/deps/libtoml_parser-5749a614a508a8c9.rmeta"],"executable":null,"fresh":true} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#getrandom@0.3.4","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"/home/servius/.cache/cargo/target/debug/build/getrandom-c88007e6ee587df4/out"} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["libm"],"filenames":["/home/servius/.cache/cargo/target/debug/build/num-traits-0d71baaf6463c189/build-script-build"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#toml_datetime@0.7.3","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_datetime-0.7.3/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"toml_datetime","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_datetime-0.7.3/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libtoml_datetime-3945a078e63d8ad6.rlib","/home/servius/.cache/cargo/target/debug/deps/libtoml_datetime-3945a078e63d8ad6.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#scopeguard@1.2.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scopeguard-1.2.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"scopeguard","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scopeguard-1.2.0/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libscopeguard-f9f4a2b4ed0dfe04.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#utf8_iter@1.0.4","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf8_iter-1.0.4/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"utf8_iter","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf8_iter-1.0.4/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libutf8_iter-a4e2ee28c007412d.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#signal-hook-registry@1.4.6","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/signal-hook-registry-1.4.6/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"signal_hook_registry","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/signal-hook-registry-1.4.6/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libsignal_hook_registry-6bef1971559726eb.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#libm@0.2.15","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libm-0.2.15/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"libm","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libm-0.2.15/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["arch","default"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/liblibm-9bd87f9e9d04ab6a.rlib","/home/servius/.cache/cargo/target/debug/deps/liblibm-9bd87f9e9d04ab6a.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#dlib@0.5.2","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dlib-0.5.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"dlib","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dlib-0.5.2/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libdlib-771a7887d3973bc2.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rustversion@1.0.22","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustversion-1.0.22/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustversion-1.0.22/build/build.rs","edition":"2018","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/build/rustversion-40be1d7cd574670a/build-script-build"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#crossbeam-epoch@0.9.18","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-epoch-0.9.18/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"crossbeam_epoch","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-epoch-0.9.18/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libcrossbeam_epoch-95681d0c88379c6c.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#memoffset@0.9.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memoffset-0.9.1/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memoffset-0.9.1/build.rs","edition":"2015","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default"],"filenames":["/home/servius/.cache/cargo/target/debug/build/memoffset-517b06b5452d2ce1/build-script-build"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde_derive@1.0.228","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"serde_derive","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libserde_derive-f843ab6c2043858f.so"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#zerocopy-derive@0.8.27","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.8.27/Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"zerocopy_derive","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.8.27/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libzerocopy_derive-65b18bd9e7fc097c.so"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#synstructure@0.13.2","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/synstructure-0.13.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"synstructure","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/synstructure-0.13.2/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","proc-macro"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libsynstructure-7637e7dc92b049f2.rlib","/home/servius/.cache/cargo/target/debug/deps/libsynstructure-7637e7dc92b049f2.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#zerovec-derive@0.11.2","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-derive-0.11.2/Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"zerovec_derive","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-derive-0.11.2/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libzerovec_derive-fb50ae5b61c92dbc.so"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#displaydoc@0.2.5","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/displaydoc-0.2.5/Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"displaydoc","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/displaydoc-0.2.5/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libdisplaydoc-b66d804db8b1f603.so"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#bytemuck_derive@1.10.2","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytemuck_derive-1.10.2/Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"bytemuck_derive","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytemuck_derive-1.10.2/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libbytemuck_derive-501905f9f4dbe829.so"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#futures-macro@0.3.31","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-macro-0.3.31/Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"futures_macro","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-macro-0.3.31/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libfutures_macro-1e80af72bb73f1f6.so"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#event-listener@5.4.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/event-listener-5.4.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"event_listener","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/event-listener-5.4.1/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","parking","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libevent_listener-de4b1491f6e6c6fc.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rand_core@0.6.4","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.6.4/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rand_core","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.6.4/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","getrandom","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/librand_core-4a4e3b36b7af2308.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#zeroize_derive@1.4.2","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zeroize_derive-1.4.2/Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"zeroize_derive","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zeroize_derive-1.4.2/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libzeroize_derive-4ea7156c917e7d49.so"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#thiserror-impl@1.0.69","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"thiserror_impl","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libthiserror_impl-d689d318f7ac219b.so"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tokio-macros@2.6.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-macros-2.6.0/Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"tokio_macros","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-macros-2.6.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libtokio_macros-1685fc441b26599d.so"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#thiserror-impl@2.0.17","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-2.0.17/Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"thiserror_impl","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-2.0.17/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libthiserror_impl-24f6d88b58464640.so"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tracing-attributes@0.1.30","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-attributes-0.1.30/Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"tracing_attributes","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-attributes-0.1.30/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libtracing_attributes-8636943322cb3835.so"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#icu_normalizer_data@2.1.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.1.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"icu_normalizer_data","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.1.1/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libicu_normalizer_data-c19717c4909df1fc.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#icu_properties_data@2.1.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"icu_properties_data","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.1.1/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libicu_properties_data-a2c54c99933d6505.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#crc32fast@1.5.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crc32fast-1.5.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"crc32fast","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crc32fast-1.5.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libcrc32fast-0cd5401e654bf3e7.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#async-io@2.6.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-io-2.6.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"async_io","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-io-2.6.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libasync_io-df8704b83f59ac8d.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#http@1.3.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.3.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"http","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.3.1/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libhttp-1011bad67192e6a8.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#toml_edit@0.23.7","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_edit-0.23.7/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"toml_edit","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_edit-0.23.7/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["parse"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libtoml_edit-4ab4fba3bcede3b6.rlib","/home/servius/.cache/cargo/target/debug/deps/libtoml_edit-4ab4fba3bcede3b6.rmeta"],"executable":null,"fresh":true} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19","linked_libs":[],"linked_paths":[],"cfgs":["has_total_cmp"],"env":[],"out_dir":"/home/servius/.cache/cargo/target/debug/build/num-traits-fc99e8005da008cf/out"} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#num-integer@0.1.46","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-integer-0.1.46/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"num_integer","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-integer-0.1.46/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["i128","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libnum_integer-c49ef12f559e3b92.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#lock_api@0.4.14","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.14/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"lock_api","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.14/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["atomic_usize","default"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/liblock_api-a993c9ef0ba526cc.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#enumflags2_derive@0.7.12","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/enumflags2_derive-0.7.12/Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"enumflags2_derive","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/enumflags2_derive-0.7.12/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libenumflags2_derive-140139964fd21a64.so"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#getrandom@0.3.4","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.4/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"getrandom","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.3.4/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libgetrandom-c5a25b37f830539e.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#crypto-common@0.1.7","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crypto-common-0.1.7/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"crypto_common","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crypto-common-0.1.7/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libcrypto_common-a5463314b5929ef2.rlib","/home/servius/.cache/cargo/target/debug/deps/libcrypto_common-a5463314b5929ef2.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#block-buffer@0.10.4","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/block-buffer-0.10.4/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"block_buffer","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/block-buffer-0.10.4/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libblock_buffer-2c134bce0299ce01.rlib","/home/servius/.cache/cargo/target/debug/deps/libblock_buffer-2c134bce0299ce01.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#block-buffer@0.10.4","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/block-buffer-0.10.4/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"block_buffer","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/block-buffer-0.10.4/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libblock_buffer-6106666f9ffd7794.rmeta"],"executable":null,"fresh":true} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#rustversion@1.0.22","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"/home/servius/.cache/cargo/target/debug/build/rustversion-ba5917b0b4aae45d/out"} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#async-executor@1.13.3","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-executor-1.13.3/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"async_executor","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-executor-1.13.3/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libasync_executor-f24aee488e1b3f69.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#wayland-sys@0.31.7","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wayland-sys-0.31.7/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wayland-sys-0.31.7/build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["client","dlopen","once_cell"],"filenames":["/home/servius/.cache/cargo/target/debug/build/wayland-sys-61e091b0d0936382/build-script-build"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#httparse@1.10.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httparse-1.10.1/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httparse-1.10.1/build.rs","edition":"2018","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/home/servius/.cache/cargo/target/debug/build/httparse-05246e2aa92cc113/build-script-build"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde@1.0.228","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.228/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"serde","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.228/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","derive","rc","serde_derive","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libserde-113c17ca047ce0b9.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#zerofrom-derive@0.1.6","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerofrom-derive-0.1.6/Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"zerofrom_derive","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerofrom-derive-0.1.6/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libzerofrom_derive-b497bea4443ce1b4.so"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#yoke-derive@0.8.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-derive-0.8.1/Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"yoke_derive","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-derive-0.8.1/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libyoke_derive-418787e40a9a2d97.so"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde@1.0.228","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.228/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"serde","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.228/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","derive","rc","serde_derive","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libserde-451de491bfd7dcbf.rlib","/home/servius/.cache/cargo/target/debug/deps/libserde-451de491bfd7dcbf.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#futures-util@0.3.31","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.31/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"futures_util","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.31/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","async-await","async-await-macro","channel","default","futures-channel","futures-io","futures-macro","futures-sink","io","memchr","sink","slab","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libfutures_util-9d67b76954a970be.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#bytemuck@1.24.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytemuck-1.24.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"bytemuck","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytemuck-1.24.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["aarch64_simd","bytemuck_derive","derive","extern_crate_alloc","min_const_generics"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libbytemuck-f1b8d9cb3453e0a6.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#event-listener-strategy@0.5.4","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/event-listener-strategy-0.5.4/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"event_listener_strategy","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/event-listener-strategy-0.5.4/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libevent_listener_strategy-b0aab046735f4508.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#zeroize@1.8.2","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zeroize-1.8.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zeroize","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zeroize-1.8.2/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","zeroize_derive"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libzeroize-3fd91b070079ae4a.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#zerocopy@0.8.27","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zerocopy","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["derive","simd","zerocopy-derive"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libzerocopy-93da35db7bef6458.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tokio@1.48.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.48.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tokio","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.48.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["bytes","default","fs","io-util","libc","macros","mio","net","rt","rt-multi-thread","socket2","sync","time","tokio-macros"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libtokio-313799744d6d4318.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#crypto-common@0.1.7","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crypto-common-0.1.7/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"crypto_common","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crypto-common-0.1.7/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["rand_core","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libcrypto_common-7ddbe6506475e098.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tracing@0.1.41","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tracing","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.41/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["attributes","default","std","tracing-attributes"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libtracing-20f892f60e516d27.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"thiserror","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libthiserror-e6d71f9522daf279.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#flate2@1.1.5","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.5/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"flate2","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flate2-1.1.5/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["any_impl","default","miniz_oxide","rust_backend"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libflate2-19e2de4d95d031de.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.17","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.17/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"thiserror","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.17/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libthiserror-1412207f4eb9648e.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#zerocopy@0.8.27","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zerocopy","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.27/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["derive","simd","zerocopy-derive"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libzerocopy-1fdfe6a545a01acf.rlib","/home/servius/.cache/cargo/target/debug/deps/libzerocopy-1fdfe6a545a01acf.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#num-traits@0.2.19","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"num_traits","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["libm"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libnum_traits-ec62df785d14bd72.rlib","/home/servius/.cache/cargo/target/debug/deps/libnum_traits-ec62df785d14bd72.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#async-signal@0.2.13","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-signal-0.2.13/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"async_signal","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-signal-0.2.13/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libasync_signal-8a3c7ccc1cb078cf.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#http-body@1.0.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-1.0.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"http_body","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-1.0.1/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libhttp_body-9ed23291c56a6c25.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#digest@0.10.7","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/digest-0.10.7/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"digest","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/digest-0.10.7/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","block-buffer","core-api","default","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libdigest-e493c4446b93e628.rlib","/home/servius/.cache/cargo/target/debug/deps/libdigest-e493c4446b93e628.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#proc-macro-crate@3.4.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-crate-3.4.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"proc_macro_crate","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-crate-3.4.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libproc_macro_crate-dbc5d54fb95a2c08.rlib","/home/servius/.cache/cargo/target/debug/deps/libproc_macro_crate-dbc5d54fb95a2c08.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#vcpkg@0.2.15","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/vcpkg-0.2.15/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"vcpkg","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/vcpkg-0.2.15/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libvcpkg-394aa79480fa29ca.rlib","/home/servius/.cache/cargo/target/debug/deps/libvcpkg-394aa79480fa29ca.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#winnow@0.7.13","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.7.13/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"winnow","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-0.7.13/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libwinnow-d407b87cd2ae4ace.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rayon-core@1.13.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.13.0/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.13.0/build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/build/rayon-core-eabf21307116cd51/build-script-build"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/build.rs","edition":"2018","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["clone-impls","default","derive","full","parsing","printing","proc-macro","quote"],"filenames":["/home/servius/.cache/cargo/target/debug/build/syn-e6b2105ef72c534e/build-script-build"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#cpufeatures@0.2.17","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cpufeatures-0.2.17/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"cpufeatures","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cpufeatures-0.2.17/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libcpufeatures-9396ba3c3ce3e0e5.rlib","/home/servius/.cache/cargo/target/debug/deps/libcpufeatures-9396ba3c3ce3e0e5.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.100","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.100/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.100/build.rs","edition":"2018","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/home/servius/.cache/cargo/target/debug/build/anyhow-e1830ac0a1147c61/build-script-build"],"executable":null,"fresh":true} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#wayland-sys@0.31.7","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"/home/servius/.cache/cargo/target/debug/build/wayland-sys-2b853328eefac471/out"} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#httparse@1.10.1","linked_libs":[],"linked_paths":[],"cfgs":["httparse_simd_neon_intrinsics","httparse_simd"],"env":[],"out_dir":"/home/servius/.cache/cargo/target/debug/build/httparse-4a4751aff91f1e29/out"} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rustversion@1.0.22","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustversion-1.0.22/Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"rustversion","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustversion-1.0.22/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/librustversion-ce1a8a173f167abe.so"],"executable":null,"fresh":true} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#memoffset@0.9.1","linked_libs":[],"linked_paths":[],"cfgs":["tuple_ty","allow_clippy","maybe_uninit","doctests","raw_ref_macros","stable_const","stable_offset_of"],"env":[],"out_dir":"/home/servius/.cache/cargo/target/debug/build/memoffset-b312f9d8753d991d/out"} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#crossbeam-deque@0.8.6","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-deque-0.8.6/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"crossbeam_deque","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-deque-0.8.6/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libcrossbeam_deque-8f8cbdf7004478ee.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde_fmt@1.0.3","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_fmt-1.0.3/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"serde_fmt","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_fmt-1.0.3/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libserde_fmt-9dc32bc733b20170.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#zerofrom@0.1.6","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerofrom-0.1.6/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zerofrom","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerofrom-0.1.6/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["derive"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libzerofrom-61b91b5ebaabe70b.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#async-channel@2.5.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-channel-2.5.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"async_channel","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-channel-2.5.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libasync_channel-b630c1d2a39ea141.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#async-lock@3.4.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-lock-3.4.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"async_lock","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-lock-3.4.1/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libasync_lock-d01a0b18f8cbb6d4.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rustls-pki-types@1.13.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.13.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rustls_pki_types","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.13.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/librustls_pki_types-4e497946b4bede2b.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#zvariant_utils@3.2.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zvariant_utils-3.2.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zvariant_utils","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zvariant_utils-3.2.1/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","gvariant"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libzvariant_utils-463e49e2c3e34a49.rlib","/home/servius/.cache/cargo/target/debug/deps/libzvariant_utils-463e49e2c3e34a49.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#digest@0.10.7","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/digest-0.10.7/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"digest","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/digest-0.10.7/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","block-buffer","core-api","default","mac","std","subtle"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libdigest-2facaadbfdd93049.rmeta"],"executable":null,"fresh":true} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.100","linked_libs":[],"linked_paths":[],"cfgs":["std_backtrace","error_generic_member_access"],"env":[],"out_dir":"/home/servius/.cache/cargo/target/debug/build/anyhow-e2b78942e523d518/out"} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tokio-util@0.7.17","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.17/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tokio_util","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-util-0.7.17/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["codec","default","io"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libtokio_util-0122d352d43065cc.rmeta"],"executable":null,"fresh":true} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#rayon-core@1.13.0","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"/home/servius/.cache/cargo/target/debug/build/rayon-core-07e9dfdbfb7da109/out"} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"/home/servius/.cache/cargo/target/debug/build/syn-469e3b194b2eca55/out"} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#openssl-sys@0.9.111","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/openssl-sys-0.9.111/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-main","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/openssl-sys-0.9.111/build/main.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/build/openssl-sys-1775e1291a29ecd0/build-script-main"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#sha2@0.10.9","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha2-0.10.9/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"sha2","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha2-0.10.9/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libsha2-422d5996a462a945.rlib","/home/servius/.cache/cargo/target/debug/deps/libsha2-422d5996a462a945.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#half@2.7.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/half-2.7.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"half","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/half-2.7.1/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["num-traits"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libhalf-bde2db5fdab801ef.rlib","/home/servius/.cache/cargo/target/debug/deps/libhalf-bde2db5fdab801ef.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.103","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.103/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"proc_macro2","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.103/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","proc-macro"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libproc_macro2-3b76911e4f887dab.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#ring@0.17.14","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","dev_urandom_fallback"],"filenames":["/home/servius/.cache/cargo/target/debug/build/ring-bc611f429b6bec9f/build-script-build"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#wayland-backend@0.3.11","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wayland-backend-0.3.11/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wayland-backend-0.3.11/build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["client_system","dlopen"],"filenames":["/home/servius/.cache/cargo/target/debug/build/wayland-backend-e2968210f11df03d/build-script-build"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#aho-corasick@1.1.4","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"aho_corasick","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","perf-literal","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libaho_corasick-6c1a913d8ee2e756.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#nix@0.30.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","feature","fs","memoffset","socket","uio","user"],"filenames":["/home/servius/.cache/cargo/target/debug/build/nix-187a874bad3b4f55/build-script-build"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#base64@0.22.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"base64","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libbase64-338dc187bf909e4f.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tower-service@0.3.3","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-service-0.3.3/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tower_service","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-service-0.3.3/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libtower_service-0c244bdadb1c689c.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#log@0.4.28","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.28/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"log","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.28/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/liblog-bd36b1907e891e2d.rlib","/home/servius/.cache/cargo/target/debug/deps/liblog-bd36b1907e891e2d.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tinyvec_macros@0.1.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinyvec_macros-0.1.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tinyvec_macros","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinyvec_macros-0.1.1/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libtinyvec_macros-edef122814962051.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#semver@1.0.27","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/semver-1.0.27/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"semver","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/semver-1.0.27/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libsemver-19c80970a7ae9765.rlib","/home/servius/.cache/cargo/target/debug/deps/libsemver-19c80970a7ae9765.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#openssl-probe@0.1.6","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/openssl-probe-0.1.6/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"openssl_probe","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/openssl-probe-0.1.6/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libopenssl_probe-c7ae6abb882da51c.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#try-lock@0.2.5","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/try-lock-0.2.5/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"try_lock","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/try-lock-0.2.5/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libtry_lock-014b8dacdcc310d6.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#ryu@1.0.20","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.20/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"ryu","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.20/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libryu-7fc86b5f7500c71e.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#regex-syntax@0.8.8","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.8/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"regex_syntax","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.8/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std","unicode","unicode-age","unicode-bool","unicode-case","unicode-gencat","unicode-perl","unicode-script","unicode-segment"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libregex_syntax-6fb54d39fec59647.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#strum_macros@0.26.4","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/strum_macros-0.26.4/Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"strum_macros","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/strum_macros-0.26.4/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libstrum_macros-13feeec905faafd4.so"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#httparse@1.10.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httparse-1.10.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"httparse","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httparse-1.10.1/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libhttparse-18c0333df5b5f665.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#memoffset@0.9.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memoffset-0.9.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"memoffset","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memoffset-0.9.1/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libmemoffset-ec6e1d4b91251231.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#ppv-lite86@0.2.21","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ppv-lite86-0.2.21/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"ppv_lite86","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ppv-lite86-0.2.21/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["simd","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libppv_lite86-e7112ff22b6b46f3.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#value-bag-serde1@1.11.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/value-bag-serde1-1.11.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"value_bag_serde1","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/value-bag-serde1-1.11.1/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libvalue_bag_serde1-aa6eb20fcdf4f8bc.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#yoke@0.8.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"yoke","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.1/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["derive","zerofrom"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libyoke-60fd879067cef785.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#blocking@1.6.2","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/blocking-1.6.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"blocking","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/blocking-1.6.2/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libblocking-d3f72c05e7cf1a05.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#zvariant_derive@5.8.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zvariant_derive-5.8.0/Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"zvariant_derive","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zvariant_derive-5.8.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","gvariant"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libzvariant_derive-26c0620ccb3f335b.so"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#async-process@2.5.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-process-2.5.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"async_process","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-process-2.5.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libasync_process-664326d31d498fe5.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#h2@0.4.12","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.12/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"h2","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/h2-0.4.12/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libh2-1f1446f5cc9b2f13.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rayon-core@1.13.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.13.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rayon_core","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.13.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/librayon_core-66618b2de557d299.rmeta"],"executable":null,"fresh":true} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#nix@0.30.1","linked_libs":[],"linked_paths":[],"cfgs":["linux","linux_android"],"env":[],"out_dir":"/home/servius/.cache/cargo/target/debug/build/nix-712c05f972908535/out"} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#want@0.3.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/want-0.3.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"want","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/want-0.3.1/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libwant-abca090310cbd894.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#quote@1.0.42","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.42/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"quote","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.42/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","proc-macro"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libquote-a524e4ecbb5c90d6.rmeta"],"executable":null,"fresh":true} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#openssl-sys@0.9.111","linked_libs":["ssl","crypto"],"linked_paths":["native=/nix/store/llswcygvgv9x2sa3z6j7i0g5iqqmn5gn-openssl-3.6.0/lib"],"cfgs":["osslconf=\"OPENSSL_NO_SSL3_METHOD\"","openssl","ossl101","ossl102","ossl102f","ossl102h","ossl110","ossl110f","ossl110g","ossl110h","ossl111","ossl111b","ossl111c","ossl111d","ossl300","ossl320","ossl330","ossl340","ossl350"],"env":[],"out_dir":"/home/servius/.cache/cargo/target/debug/build/openssl-sys-fa1a13ee2f8486bd/out"} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#wayland-backend@0.3.11","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"/home/servius/.cache/cargo/target/debug/build/wayland-backend-fa857940ec918d27/out"} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#regex-automata@0.4.13","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.13/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"regex_automata","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.13/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","dfa-build","dfa-onepass","dfa-search","hybrid","meta","nfa","nfa-backtrack","nfa-pikevm","nfa-thompson","perf","perf-inline","perf-literal","perf-literal-multisubstring","perf-literal-substring","std","syntax","unicode","unicode-age","unicode-bool","unicode-case","unicode-gencat","unicode-perl","unicode-script","unicode-segment","unicode-word-boundary"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libregex_automata-7e31ba8a118b7349.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tinyvec@1.10.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinyvec-1.10.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tinyvec","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinyvec-1.10.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","tinyvec_macros"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libtinyvec-73c1945b8cd78683.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rustc_version@0.4.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustc_version-0.4.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rustc_version","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustc_version-0.4.1/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/librustc_version-24c3d64659732a5d.rlib","/home/servius/.cache/cargo/target/debug/deps/librustc_version-24c3d64659732a5d.rmeta"],"executable":null,"fresh":true} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#ring@0.17.14","linked_libs":["static=ring_core_0_17_14_","static=ring_core_0_17_14__test"],"linked_paths":["native=/home/servius/.cache/cargo/target/debug/build/ring-d03db91f31cfebe1/out"],"cfgs":[],"env":[],"out_dir":"/home/servius/.cache/cargo/target/debug/build/ring-d03db91f31cfebe1/out"} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#syn@1.0.109","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"syn","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-1.0.109/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["clone-impls","default","derive","full","parsing","printing","proc-macro","quote"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libsyn-9f80144b2e388c23.rlib","/home/servius/.cache/cargo/target/debug/deps/libsyn-9f80144b2e388c23.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#anyhow@1.0.100","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.100/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"anyhow","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.100/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libanyhow-860fa2efb589f3ba.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#num-bigint@0.4.6","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-bigint-0.4.6/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"num_bigint","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-bigint-0.4.6/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libnum_bigint-bf96587511c453ce.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#equator-macro@0.4.2","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/equator-macro-0.4.2/Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"equator_macro","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/equator-macro-0.4.2/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libequator_macro-5c3eea81346d8ef5.so"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#slotmap@1.0.7","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/slotmap-1.0.7/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/slotmap-1.0.7/build.rs","edition":"2018","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/home/servius/.cache/cargo/target/debug/build/slotmap-771a8c6522151ac9/build-script-build"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#quick-xml@0.37.5","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quick-xml-0.37.5/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"quick_xml","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quick-xml-0.37.5/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libquick_xml-bc5eca7ed8c57926.rlib","/home/servius/.cache/cargo/target/debug/deps/libquick_xml-bc5eca7ed8c57926.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#downcast-rs@1.2.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/downcast-rs-1.2.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"downcast_rs","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/downcast-rs-1.2.1/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libdowncast_rs-7737c03c240074a4.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#wayland-client@0.31.11","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wayland-client-0.31.11/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wayland-client-0.31.11/build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/build/wayland-client-1b1582f61c354e8f/build-script-build"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#scoped-tls@1.0.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scoped-tls-1.0.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"scoped_tls","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scoped-tls-1.0.1/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libscoped_tls-7f7f5280425275a6.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#enumflags2@0.7.12","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/enumflags2-0.7.12/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"enumflags2","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/enumflags2-0.7.12/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["serde"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libenumflags2-65b1b645e861d5e1.rlib","/home/servius/.cache/cargo/target/debug/deps/libenumflags2-65b1b645e861d5e1.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#spin@0.9.8","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/spin-0.9.8/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"spin","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/spin-0.9.8/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["barrier","default","lazy","lock_api","lock_api_crate","mutex","once","rwlock","spin_mutex"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libspin-624e50fe69e1e6f3.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#aho-corasick@1.1.4","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"aho_corasick","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","perf-literal","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libaho_corasick-3896aa48ebc24a1d.rlib","/home/servius/.cache/cargo/target/debug/deps/libaho_corasick-3896aa48ebc24a1d.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#untrusted@0.9.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/untrusted-0.9.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"untrusted","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/untrusted-0.9.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libuntrusted-44431d13cc5da18b.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#regex-syntax@0.8.8","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.8/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"regex_syntax","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.8/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libregex_syntax-d52e4758527cc371.rlib","/home/servius/.cache/cargo/target/debug/deps/libregex_syntax-d52e4758527cc371.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#endi@1.1.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/endi-1.1.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"endi","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/endi-1.1.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libendi-c728ad618c1b2eeb.rlib","/home/servius/.cache/cargo/target/debug/deps/libendi-c728ad618c1b2eeb.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.145","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.145/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.145/build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","indexmap","preserve_order","raw_value","std"],"filenames":["/home/servius/.cache/cargo/target/debug/build/serde_json-b17f57c490db3116/build-script-build"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#value-bag@1.11.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/value-bag-1.11.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"value_bag","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/value-bag-1.11.1/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","error","inline-i128","serde","serde1","std","value-bag-serde1"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libvalue_bag-d8fda4cc44678807.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#zerovec@0.11.5","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.5/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zerovec","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.5/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["derive","yoke"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libzerovec-870bef92489aa63e.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#zerotrie@0.2.3","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.3/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zerotrie","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.3/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["yoke","zerofrom"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libzerotrie-bef64d3a99543531.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#syn@2.0.110","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.110/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"syn","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.110/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["clone-impls","default","derive","extra-traits","full","parsing","printing","proc-macro"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libsyn-c4fc43284bb92125.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#wayland-scanner@0.31.7","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wayland-scanner-0.31.7/Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"wayland_scanner","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wayland-scanner-0.31.7/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libwayland_scanner-9dbf3f16f8b46ab4.so"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#equator@0.4.2","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/equator-0.4.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"equator","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/equator-0.4.2/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libequator-2abe5f27295ed3e8.rmeta"],"executable":null,"fresh":true} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#wayland-client@0.31.11","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"/home/servius/.cache/cargo/target/debug/build/wayland-client-bb0300a200cae1e7/out"} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#nix@0.30.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"nix","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.30.1/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","feature","fs","memoffset","socket","uio","user"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libnix-f8d29314cec76d98.rmeta"],"executable":null,"fresh":true} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#slotmap@1.0.7","linked_libs":[],"linked_paths":[],"cfgs":["has_min_const_generics","nightly"],"env":[],"out_dir":"/home/servius/.cache/cargo/target/debug/build/slotmap-2765c90f63cc5631/out"} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#num-rational@0.4.2","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-rational-0.4.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"num_rational","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-rational-0.4.2/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","num-bigint","num-bigint-std","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libnum_rational-480b7fdda58e3f26.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#hyper@1.8.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"hyper","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.8.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["client","default","http1","http2"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libhyper-4ade2014d82ebf0e.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#ipnet@2.11.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ipnet-2.11.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"ipnet","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ipnet-2.11.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libipnet-46f2f23a77e23892.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rustix@0.38.44","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-0.38.44/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-0.38.44/build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","event","fs","libc-extra-traits","pipe","std"],"filenames":["/home/servius/.cache/cargo/target/debug/build/rustix-06a113d1e1e8b4f2/build-script-build"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#cpufeatures@0.2.17","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cpufeatures-0.2.17/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"cpufeatures","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cpufeatures-0.2.17/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libcpufeatures-c21465731121e9eb.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#ring@0.17.14","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"ring","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","dev_urandom_fallback"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libring-1cda51284be6fab6.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#async-net@2.0.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-net-2.0.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"async_net","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-net-2.0.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libasync_net-426b823e6b10b373.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#zvariant@5.8.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zvariant-5.8.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zvariant","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zvariant-5.8.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","enumflags2","gvariant"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libzvariant-b308f423921eb7bd.rlib","/home/servius/.cache/cargo/target/debug/deps/libzvariant-b308f423921eb7bd.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#async-fs@2.2.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-fs-2.2.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"async_fs","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-fs-2.2.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libasync_fs-7d48d19600f1247e.rmeta"],"executable":null,"fresh":true} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.145","linked_libs":[],"linked_paths":[],"cfgs":["fast_arithmetic=\"64\""],"env":[],"out_dir":"/home/servius/.cache/cargo/target/debug/build/serde_json-d9090b0d4ab197eb/out"} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#regex-automata@0.4.13","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.13/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"regex_automata","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.13/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","hybrid","meta","nfa","nfa-backtrack","nfa-pikevm","nfa-thompson","perf","perf-inline","perf-literal","perf-literal-multisubstring","perf-literal-substring","std","syntax"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libregex_automata-1b3e067328a281f7.rlib","/home/servius/.cache/cargo/target/debug/deps/libregex_automata-1b3e067328a281f7.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rayon@1.11.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rayon","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/librayon-8e75ead27bf9d666.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#half@2.7.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/half-2.7.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"half","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/half-2.7.1/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","num-traits","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libhalf-d69e6d4d09510852.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#enumflags2@0.7.12","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/enumflags2-0.7.12/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"enumflags2","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/enumflags2-0.7.12/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["serde"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libenumflags2-f1685fb0b92b8776.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#euclid@0.22.11","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/euclid-0.22.11/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"euclid","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/euclid-0.22.11/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libeuclid-af9f1f779e1c66cd.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#pin-project-internal@1.1.10","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-internal-1.1.10/Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"pin_project_internal","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-internal-1.1.10/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libpin_project_internal-37c05b6db9650cff.so"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#memmap2@0.9.9","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memmap2-0.9.9/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"memmap2","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memmap2-0.9.9/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libmemmap2-5c277d2c1f0d02c4.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#sync_wrapper@1.0.2","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sync_wrapper-1.0.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"sync_wrapper","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sync_wrapper-1.0.2/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["futures","futures-core"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libsync_wrapper-6a0f7cb942f57760.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#object@0.32.2","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/object-0.32.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"object","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/object-0.32.2/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["archive","coff","elf","macho","pe","read","read_core","std","unaligned","xcoff"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libobject-d6b9dd2a5971fc5d.rlib","/home/servius/.cache/cargo/target/debug/deps/libobject-d6b9dd2a5971fc5d.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#bstr@1.12.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bstr-1.12.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"bstr","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bstr-1.12.1/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libbstr-0655b8d4a9469b76.rlib","/home/servius/.cache/cargo/target/debug/deps/libbstr-0655b8d4a9469b76.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#proc-macro-error-attr@1.0.4","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error-attr-1.0.4/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error-attr-1.0.4/build.rs","edition":"2018","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/build/proc-macro-error-attr-b9a90c1ab97a4a19/build-script-build"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tower-layer@0.3.3","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-layer-0.3.3/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tower_layer","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-layer-0.3.3/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libtower_layer-3838c515db690a98.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#linux-raw-sys@0.4.15","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/linux-raw-sys-0.4.15/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"linux_raw_sys","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/linux-raw-sys-0.4.15/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["elf","errno","general","ioctl","no_std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/liblinux_raw_sys-f0ac11dca9dbe036.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#log@0.4.28","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.28/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"log","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.28/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["kv","kv_serde","kv_std","kv_unstable","kv_unstable_serde","kv_unstable_std","serde","std","value-bag"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/liblog-15bc69945e2f189f.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tinystr@0.8.2","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.8.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tinystr","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.8.2/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["zerovec"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libtinystr-266a841f16896bdb.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#potential_utf@0.1.4","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/potential_utf-0.1.4/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"potential_utf","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/potential_utf-0.1.4/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["zerovec"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libpotential_utf-0ed0f2f8943578d7.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#slotmap@1.0.7","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/slotmap-1.0.7/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"slotmap","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/slotmap-1.0.7/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libslotmap-56a8f87c9dbb43d9.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#zvariant_utils@3.2.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zvariant_utils-3.2.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zvariant_utils","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zvariant_utils-3.2.1/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","gvariant"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libzvariant_utils-b76f17f9949af0e7.rmeta"],"executable":null,"fresh":true} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#rustix@0.38.44","linked_libs":[],"linked_paths":[],"cfgs":["static_assertions","linux_raw","linux_like","linux_kernel"],"env":[],"out_dir":"/home/servius/.cache/cargo/target/debug/build/rustix-8cc377c7ddf4c767/out"} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#hyper-util@0.1.17","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.17/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"hyper_util","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.17/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["client","client-legacy","client-proxy","client-proxy-system","default","http1","http2","tokio"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libhyper_util-f0efa8fa04bc4c11.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#aligned-vec@0.6.4","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aligned-vec-0.6.4/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"aligned_vec","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aligned-vec-0.6.4/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libaligned_vec-c593b86fe24182ad.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#foreign-types-shared@0.1.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/foreign-types-shared-0.1.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"foreign_types_shared","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/foreign-types-shared-0.1.1/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libforeign_types_shared-a871f8492b4c2ef7.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#roxmltree@0.20.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/roxmltree-0.20.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"roxmltree","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/roxmltree-0.20.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","positions","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libroxmltree-c668a48c208e535d.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#same-file@1.0.6","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/same-file-1.0.6/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"same_file","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/same-file-1.0.6/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libsame_file-c3d42a00f565f4b5.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#static_assertions@1.1.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/static_assertions-1.1.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"static_assertions","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/static_assertions-1.1.0/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libstatic_assertions-dbffefb3b3c56b72.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#slab@0.4.11","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/slab-0.4.11/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"slab","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/slab-0.4.11/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libslab-352ff49120a1d861.rlib","/home/servius/.cache/cargo/target/debug/deps/libslab-352ff49120a1d861.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#minimal-lexical@0.2.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/minimal-lexical-0.2.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"minimal_lexical","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/minimal-lexical-0.2.1/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libminimal_lexical-fd4e2de6734108b1.rlib","/home/servius/.cache/cargo/target/debug/deps/libminimal_lexical-fd4e2de6734108b1.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#endi@1.1.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/endi-1.1.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"endi","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/endi-1.1.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libendi-732aba21e53340ca.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#same-file@1.0.6","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/same-file-1.0.6/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"same_file","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/same-file-1.0.6/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libsame_file-32d4e73738d06629.rlib","/home/servius/.cache/cargo/target/debug/deps/libsame_file-32d4e73738d06629.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rustls@0.23.35","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.23.35/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.23.35/build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["ring","std","tls12"],"filenames":["/home/servius/.cache/cargo/target/debug/build/rustls-b68303dd940bc30b/build-script-build"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#ash@0.38.0+1.3.281","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ash-0.38.0+1.3.281/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ash-0.38.0+1.3.281/build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["debug","default","libloading","loaded","std"],"filenames":["/home/servius/.cache/cargo/target/debug/build/ash-1ec72d4f2be3c9d1/build-script-build"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#openssl@0.10.75","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/openssl-0.10.75/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/openssl-0.10.75/build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default"],"filenames":["/home/servius/.cache/cargo/target/debug/build/openssl-332d09f541a40042/build-script-build"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#static_assertions@1.1.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/static_assertions-1.1.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"static_assertions","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/static_assertions-1.1.0/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libstatic_assertions-ee291c2c2f2471d0.rlib","/home/servius/.cache/cargo/target/debug/deps/libstatic_assertions-ee291c2c2f2471d0.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.145","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.145/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"serde_json","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.145/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","indexmap","preserve_order","raw_value","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libserde_json-2f984874250bb46e.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#ar_archive_writer@0.2.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ar_archive_writer-0.2.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"ar_archive_writer","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ar_archive_writer-0.2.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libar_archive_writer-ae3ba7d07897de6f.rlib","/home/servius/.cache/cargo/target/debug/deps/libar_archive_writer-ae3ba7d07897de6f.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#pin-project@1.1.10","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-1.1.10/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"pin_project","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-1.1.10/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libpin_project-aa0105fbaa70d211.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#globset@0.4.18","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/globset-0.4.18/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"globset","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/globset-0.4.18/src/lib.rs","edition":"2024","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","log"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libglobset-6b9aeaf1f74469a8.rlib","/home/servius/.cache/cargo/target/debug/deps/libglobset-6b9aeaf1f74469a8.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rustls-webpki@0.103.8","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.103.8/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"webpki","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.103.8/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","ring","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libwebpki-d4465cb81bfe4070.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#sha2@0.10.9","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha2-0.10.9/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"sha2","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha2-0.10.9/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libsha2-11cb1094b9b5e25c.rmeta"],"executable":null,"fresh":true} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#proc-macro-error-attr@1.0.4","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"/home/servius/.cache/cargo/target/debug/build/proc-macro-error-attr-4b3f22e50a190a0a/out"} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tower@0.5.2","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tower","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.2/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["__common","futures-core","futures-util","pin-project-lite","retry","sync_wrapper","timeout","tokio","util"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libtower-73a763477c3ed6b6.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#lazy_static@1.5.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lazy_static-1.5.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"lazy_static","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lazy_static-1.5.0/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["spin","spin_no_std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/liblazy_static-3024b3e7ad6b2a51.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#openssl-sys@0.9.111","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/openssl-sys-0.9.111/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"openssl_sys","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/openssl-sys-0.9.111/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libopenssl_sys-1da35ecd63b75066.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#http-body-util@0.1.3","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.3/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"http_body_util","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.3/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libhttp_body_util-c9e02e90a2a2b34c.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rand_core@0.9.3","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.9.3/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rand_core","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.9.3/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["os_rng","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/librand_core-0618b8f2387936e6.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#icu_locale_core@2.1.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"icu_locale_core","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.1.1/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["zerovec"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libicu_locale_core-e257729e6af5e58c.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#icu_collections@2.1.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.1.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"icu_collections","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.1.1/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libicu_collections-afbfce0c33ec4111.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#wayland-sys@0.31.7","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wayland-sys-0.31.7/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"wayland_sys","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wayland-sys-0.31.7/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["client","dlopen","once_cell"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libwayland_sys-1159f6ae8dcb75a0.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#zbus_names@4.2.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zbus_names-4.2.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zbus_names","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zbus_names-4.2.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libzbus_names-4e2734b1edd1c088.rlib","/home/servius/.cache/cargo/target/debug/deps/libzbus_names-4e2734b1edd1c088.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#fontconfig-parser@0.5.8","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fontconfig-parser-0.5.8/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"fontconfig_parser","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fontconfig-parser-0.5.8/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libfontconfig_parser-d08c7cdf342dc94b.rmeta"],"executable":null,"fresh":true} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#openssl@0.10.75","linked_libs":[],"linked_paths":[],"cfgs":["osslconf=\"OPENSSL_NO_SSL3_METHOD\"","ossl101","ossl102","ossl110","ossl110g","ossl110h","ossl111","ossl111d","ossl300","ossl310","ossl320","ossl330","ossl340","ossl350"],"env":[],"out_dir":"/home/servius/.cache/cargo/target/debug/build/openssl-ddc782d6c15bb262/out"} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#foreign-types@0.3.2","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/foreign-types-0.3.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"foreign_types","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/foreign-types-0.3.2/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libforeign_types-4a796bebb8b7a429.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rustix@0.38.44","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-0.38.44/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rustix","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-0.38.44/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","event","fs","libc-extra-traits","pipe","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/librustix-cd2e0ca03fab75d5.rmeta"],"executable":null,"fresh":true} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#ash@0.38.0+1.3.281","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"/home/servius/.cache/cargo/target/debug/build/ash-f7f757020281e847/out"} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#nom@7.1.3","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nom-7.1.3/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"nom","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nom-7.1.3/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libnom-ec2ec674d00a7d58.rlib","/home/servius/.cache/cargo/target/debug/deps/libnom-ec2ec674d00a7d58.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#cc-traits@2.0.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-traits-2.0.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"cc_traits","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-traits-2.0.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","slab","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libcc_traits-1e90f74b69f63b3b.rlib","/home/servius/.cache/cargo/target/debug/deps/libcc_traits-1e90f74b69f63b3b.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#walkdir@2.5.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/walkdir-2.5.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"walkdir","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/walkdir-2.5.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libwalkdir-a6b45dd35360ea6d.rlib","/home/servius/.cache/cargo/target/debug/deps/libwalkdir-a6b45dd35360ea6d.rmeta"],"executable":null,"fresh":true} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#rustls@0.23.35","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"/home/servius/.cache/cargo/target/debug/build/rustls-6b38f870249d0752/out"} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#v_frame@0.3.9","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/v_frame-0.3.9/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"v_frame","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/v_frame-0.3.9/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libv_frame-c0a994100291aa3d.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#walkdir@2.5.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/walkdir-2.5.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"walkdir","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/walkdir-2.5.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libwalkdir-709aff06faa3cc3d.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#profiling-procmacros@1.0.17","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/profiling-procmacros-1.0.17/Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"profiling_procmacros","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/profiling-procmacros-1.0.17/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libprofiling_procmacros-d5fcbf104f6cb238.so"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#openssl-macros@0.1.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/openssl-macros-0.1.1/Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"openssl_macros","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/openssl-macros-0.1.1/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libopenssl_macros-cd4b0956233ca60e.so"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#block-padding@0.3.3","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/block-padding-0.3.3/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"block_padding","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/block-padding-0.3.3/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libblock_padding-30ba6aff55f927a8.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#core_maths@0.1.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core_maths-0.1.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"core_maths","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core_maths-0.1.1/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libcore_maths-ddfd925899d97272.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#itertools@0.14.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"itertools","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":false},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","use_alloc","use_std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libitertools-f825cae295fce5d3.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#fdeflate@0.3.7","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fdeflate-0.3.7/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"fdeflate","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fdeflate-0.3.7/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libfdeflate-20a9e1cdf22aa786.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#as-slice@0.2.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/as-slice-0.2.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"as_slice","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/as-slice-0.2.1/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libas_slice-78f2976ed2f81ca2.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#bstr@1.12.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bstr-1.12.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"bstr","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bstr-1.12.1/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libbstr-c0b451772a842c8b.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#proc-macro-error@1.0.4","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error-1.0.4/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error-1.0.4/build.rs","edition":"2018","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","syn","syn-error"],"filenames":["/home/servius/.cache/cargo/target/debug/build/proc-macro-error-2f88d2b27391cccb/build-script-build"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#native-tls@0.2.14","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/native-tls-0.2.14/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/native-tls-0.2.14/build.rs","edition":"2015","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/build/native-tls-6b7e46a4dd05691b/build-script-build"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#unicode-script@0.5.7","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-script-0.5.7/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"unicode_script","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-script-0.5.7/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libunicode_script-e8c81f5134b1813a.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#paste@1.0.15","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/paste-1.0.15/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/paste-1.0.15/build.rs","edition":"2018","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/build/paste-9245072c691d01c9/build-script-build"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#compression-core@0.4.30","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/compression-core-0.4.30/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"compression_core","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/compression-core-0.4.30/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libcompression_core-dc5f570a2d4fe92a.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.17","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.17/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.17/build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/build/thiserror-d84c66ec4c0540db/build-script-build"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#unicode-properties@0.1.4","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-properties-0.1.4/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"unicode_properties","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-properties-0.1.4/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["general-category"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libunicode_properties-165772f8071fad94.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#ref-cast@1.0.25","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ref-cast-1.0.25/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ref-cast-1.0.25/build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/build/ref-cast-d169003d0daeb6e0/build-script-build"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#av-scenechange@0.14.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/av-scenechange-0.14.1/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/av-scenechange-0.14.1/build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/build/av-scenechange-49ebee06e93cbddc/build-script-build"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#icu_provider@2.1.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.1.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"icu_provider","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.1.1/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["baked"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libicu_provider-35ca61c3bfbf47cc.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#wayland-backend@0.3.11","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wayland-backend-0.3.11/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"wayland_backend","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wayland-backend-0.3.11/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["client_system","dlopen"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libwayland_backend-f39b02b19181a7c5.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#sha1_smol@1.0.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha1_smol-1.0.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"sha1_smol","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha1_smol-1.0.1/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libsha1_smol-0eb3394ab92d9af7.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#smallvec@1.15.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/smallvec-1.15.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"smallvec","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/smallvec-1.15.1/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libsmallvec-8ee7891561d7e5c7.rlib","/home/servius/.cache/cargo/target/debug/deps/libsmallvec-8ee7891561d7e5c7.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#mime@0.3.17","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mime-0.3.17/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"mime","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mime-0.3.17/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libmime-d402bf9a6a65735f.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#built@0.8.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/built-0.8.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"built","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/built-0.8.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libbuilt-4b4e60bb86900715.rlib","/home/servius/.cache/cargo/target/debug/deps/libbuilt-4b4e60bb86900715.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#deflate64@0.1.10","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/deflate64-0.1.10/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"deflate64","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/deflate64-0.1.10/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libdeflate64-1a5c664a2a50d076.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#parking_lot_core@0.9.12","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/build/parking_lot_core-a3c039569b8f43c6/build-script-build"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#unicase@2.8.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicase-2.8.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"unicase","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicase-2.8.1/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libunicase-9272724c70fefc4e.rlib","/home/servius/.cache/cargo/target/debug/deps/libunicase-9272724c70fefc4e.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#float-cmp@0.9.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/float-cmp-0.9.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"float_cmp","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/float-cmp-0.9.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libfloat_cmp-8bf671f2dd05f818.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#ciborium-io@0.2.2","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ciborium-io-0.2.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"ciborium_io","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ciborium-io-0.2.2/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libciborium_io-a8ca41ea263832e0.rlib","/home/servius/.cache/cargo/target/debug/deps/libciborium_io-a8ca41ea263832e0.rmeta"],"executable":null,"fresh":true} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#native-tls@0.2.14","linked_libs":[],"linked_paths":[],"cfgs":["have_min_max_version"],"env":[],"out_dir":"/home/servius/.cache/cargo/target/debug/build/native-tls-3340c53bcb7d5895/out"} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rustls@0.23.35","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.23.35/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rustls","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.23.35/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["ring","std","tls12"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/librustls-25b349368fd531e4.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#globset@0.4.18","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/globset-0.4.18/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"globset","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/globset-0.4.18/src/lib.rs","edition":"2024","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","log"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libglobset-3c7c1bd7b92f7eb7.rmeta"],"executable":null,"fresh":true} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.17","linked_libs":[],"linked_paths":[],"cfgs":["error_generic_member_access"],"env":[],"out_dir":"/home/servius/.cache/cargo/target/debug/build/thiserror-b4b214198629dd51/out"} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#profiling@1.0.17","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/profiling-1.0.17/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"profiling","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/profiling-1.0.17/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","procmacros","profiling-procmacros"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libprofiling-ecd30d2dacf7d923.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rust-embed-utils@8.9.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rust-embed-utils-8.9.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rust_embed_utils","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rust-embed-utils-8.9.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["globset","include-exclude"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/librust_embed_utils-2e16fa010f152676.rlib","/home/servius/.cache/cargo/target/debug/deps/librust_embed_utils-2e16fa010f152676.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#openssl@0.10.75","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/openssl-0.10.75/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"openssl","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/openssl-0.10.75/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libopenssl-541e9de414ada0e3.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#aligned@0.4.2","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aligned-0.4.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"aligned","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aligned-0.4.2/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libaligned-9ef9b0d1bd27c891.rmeta"],"executable":null,"fresh":true} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#ref-cast@1.0.25","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"/home/servius/.cache/cargo/target/debug/build/ref-cast-8bdd5bd3f9bcbd8a/out"} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#av-scenechange@0.14.1","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[["PROFILE","debug"],["CARGO_CFG_TARGET_FEATURE","fxsr,sse,sse2,x87"],["CARGO_ENCODED_RUSTFLAGS",""]],"out_dir":"/home/servius/.cache/cargo/target/debug/build/av-scenechange-2e53a3ffb506fb9b/out"} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#paste@1.0.15","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"/home/servius/.cache/cargo/target/debug/build/paste-c93e668844dc3cd3/out"} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#proc-macro-error@1.0.4","linked_libs":[],"linked_paths":[],"cfgs":["skip_ui_tests"],"env":[],"out_dir":"/home/servius/.cache/cargo/target/debug/build/proc-macro-error-0127672afe07eb55/out"} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#zbus_macros@5.12.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zbus_macros-5.12.0/Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"zbus_macros","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zbus_macros-5.12.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","gvariant"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libzbus_macros-4f6679a84654f90b.so"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#ash@0.38.0+1.3.281","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ash-0.38.0+1.3.281/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"ash","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ash-0.38.0+1.3.281/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["debug","default","libloading","loaded","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libash-c545b4b325413b77.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#abnf-core@0.5.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/abnf-core-0.5.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"abnf_core","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/abnf-core-0.5.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libabnf_core-51ed8ed26592a98f.rlib","/home/servius/.cache/cargo/target/debug/deps/libabnf_core-51ed8ed26592a98f.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#inout@0.1.4","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/inout-0.1.4/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"inout","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/inout-0.1.4/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["block-padding"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libinout-6ea86e5296eb61ed.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#ttf-parser@0.25.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ttf-parser-0.25.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"ttf_parser","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ttf-parser-0.25.1/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["apple-layout","core_maths","glyph-names","no-std-float","opentype-layout","std","variable-fonts"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libttf_parser-41d40a8b3bfab852.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#psm@0.1.28","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/psm-0.1.28/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/psm-0.1.28/build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/build/psm-5479faeb4c0f93ef/build-script-build"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rand_chacha@0.9.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_chacha-0.9.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rand_chacha","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_chacha-0.9.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/librand_chacha-a00f491ad00545de.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#proc-macro-error-attr@1.0.4","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error-attr-1.0.4/Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"proc_macro_error_attr","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error-attr-1.0.4/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libproc_macro_error_attr-df2e6c8902cd3463.so"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#lyon_geom@1.0.17","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lyon_geom-1.0.17/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"lyon_geom","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lyon_geom-1.0.17/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/liblyon_geom-d031d11955de091e.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#icu_properties@2.1.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.1.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"icu_properties","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.1.1/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["compiled_data"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libicu_properties-43d82263d17c1192.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#icu_normalizer@2.1.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer-2.1.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"icu_normalizer","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer-2.1.1/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["compiled_data"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libicu_normalizer-aaddbd418f4c34eb.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#wayland-client@0.31.11","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wayland-client-0.31.11/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"wayland_client","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wayland-client-0.31.11/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libwayland_client-45ff9d61110256a3.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#uuid@1.18.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/uuid-1.18.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"uuid","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/uuid-1.18.1/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","rng","serde","sha1","std","v4","v5","v7"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libuuid-c16f127e38c954e2.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#ciborium-ll@0.2.2","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ciborium-ll-0.2.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"ciborium_ll","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ciborium-ll-0.2.2/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libciborium_ll-2c9673be063617a6.rlib","/home/servius/.cache/cargo/target/debug/deps/libciborium_ll-2c9673be063617a6.rmeta"],"executable":null,"fresh":true} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#parking_lot_core@0.9.12","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"/home/servius/.cache/cargo/target/debug/build/parking_lot_core-be6b4f7d3aa5f353/out"} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#compression-codecs@0.4.32","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/compression-codecs-0.4.32/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"compression_codecs","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/compression-codecs-0.4.32/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["deflate","deflate64","flate2","gzip","memchr"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libcompression_codecs-23f92f8c26899457.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#strict-num@0.1.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/strict-num-0.1.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"strict_num","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/strict-num-0.1.1/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["approx-eq","default","float-cmp"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libstrict_num-7fe75941b54c76f9.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rav1e@0.8.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rav1e-0.8.1/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rav1e-0.8.1/build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["threading"],"filenames":["/home/servius/.cache/cargo/target/debug/build/rav1e-c8101493bc72b044/build-script-build"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#btree-slab@0.6.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/btree-slab-0.6.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"btree_slab","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/btree-slab-0.6.1/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","slab","std-slab"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libbtree_slab-f2b452018a3548b5.rlib","/home/servius/.cache/cargo/target/debug/deps/libbtree_slab-f2b452018a3548b5.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#mime_guess@2.0.5","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mime_guess-2.0.5/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mime_guess-2.0.5/build.rs","edition":"2015","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/build/mime_guess-7456cbba121832a1/build-script-build"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#pathfinder_simd@0.5.5","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pathfinder_simd-0.5.5/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pathfinder_simd-0.5.5/build.rs","edition":"2018","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/build/pathfinder_simd-a20b5be48de9bb4e/build-script-build"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde_urlencoded@0.7.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_urlencoded-0.7.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"serde_urlencoded","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_urlencoded-0.7.1/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":false},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libserde_urlencoded-f8cfc770a06b2e94.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#async-broadcast@0.7.2","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-broadcast-0.7.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"async_broadcast","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-broadcast-0.7.2/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libasync_broadcast-9d27fe9508e3ba2b.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#font-types@0.10.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/font-types-0.10.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"font_types","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/font-types-0.10.1/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["bytemuck","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libfont_types-e1b94c27a4fa9e86.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#futures-executor@0.3.31","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-executor-0.3.31/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"futures_executor","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-executor-0.3.31/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libfutures_executor-28debb784d7181d6.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#ref-cast-impl@1.0.25","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ref-cast-impl-1.0.25/Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"ref_cast_impl","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ref-cast-impl-1.0.25/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libref_cast_impl-89a2fc04073a502f.so"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#arg_enum_proc_macro@0.3.4","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/arg_enum_proc_macro-0.3.4/Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"arg_enum_proc_macro","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/arg_enum_proc_macro-0.3.4/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libarg_enum_proc_macro-476d114ef20ade2d.so"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#async-trait@0.1.89","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-trait-0.1.89/Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"async_trait","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-trait-0.1.89/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libasync_trait-be86b6dde41d2339.so"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde_derive_internals@0.29.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive_internals-0.29.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"serde_derive_internals","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive_internals-0.29.1/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libserde_derive_internals-7e15050ada14c4ce.rlib","/home/servius/.cache/cargo/target/debug/deps/libserde_derive_internals-7e15050ada14c4ce.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde_repr@0.1.20","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_repr-0.1.20/Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"serde_repr","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_repr-0.1.20/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libserde_repr-fbc4661d811369c0.so"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#freetype-sys@0.20.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/freetype-sys-0.20.1/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/freetype-sys-0.20.1/build.rs","edition":"2018","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/build/freetype-sys-95431bbfe70e32e0/build-script-build"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#core2@0.4.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core2-0.4.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"core2","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/core2-0.4.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libcore2-2449473f3e7c10c6.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#nix@0.29.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.29.0/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.29.0/build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","feature","user"],"filenames":["/home/servius/.cache/cargo/target/debug/build/nix-3eea6a8558db211b/build-script-build"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#naga@25.0.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/naga-25.0.1/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/naga-25.0.1/build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["compact","default","spv-out","wgsl-in"],"filenames":["/home/servius/.cache/cargo/target/debug/build/naga-fa05c2df88949d76/build-script-build"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#ordered-stream@0.2.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ordered-stream-0.2.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"ordered_stream","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ordered-stream-0.2.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libordered_stream-3196db0f6c1b7e6c.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#yeslogic-fontconfig-sys@6.0.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yeslogic-fontconfig-sys-6.0.0/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yeslogic-fontconfig-sys-6.0.0/build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["dlopen"],"filenames":["/home/servius/.cache/cargo/target/debug/build/yeslogic-fontconfig-sys-c8d6030d4e74bb6a/build-script-build"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#naga@25.0.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/naga-25.0.1/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/naga-25.0.1/build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["compact","default","wgsl-in"],"filenames":["/home/servius/.cache/cargo/target/debug/build/naga-f30f4bd3cc09bb54/build-script-build"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#gpu-alloc-types@0.3.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gpu-alloc-types-0.3.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"gpu_alloc_types","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gpu-alloc-types-0.3.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libgpu_alloc_types-94411cc070f5576c.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#nom@8.0.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nom-8.0.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"nom","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nom-8.0.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libnom-4b10fc360c3c48ad.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#encoding_rs@0.8.35","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"encoding_rs","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/encoding_rs-0.8.35/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libencoding_rs-aeafd027583a74bf.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#unicode-width@0.2.2","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-width-0.2.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"unicode_width","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-width-0.2.2/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["cjk","default"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libunicode_width-64b287476123fef9.rlib","/home/servius/.cache/cargo/target/debug/deps/libunicode_width-64b287476123fef9.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#idna_adapter@1.2.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/idna_adapter-1.2.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"idna_adapter","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/idna_adapter-1.2.1/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["compiled_data"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libidna_adapter-958e4966b6eeb1a7.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#termcolor@1.4.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/termcolor-1.4.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"termcolor","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/termcolor-1.4.1/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libtermcolor-71b203789406a38a.rlib","/home/servius/.cache/cargo/target/debug/deps/libtermcolor-71b203789406a38a.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#pastey@0.1.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pastey-0.1.1/Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"pastey","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pastey-0.1.1/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libpastey-df50ae5846cab05c.so"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hex-0.4.3/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"hex","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hex-0.4.3/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libhex-e70d8a861528f08b.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde_json_lenient@0.2.4","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json_lenient-0.2.4/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json_lenient-0.2.4/build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","indexmap","preserve_order","raw_value","std"],"filenames":["/home/servius/.cache/cargo/target/debug/build/serde_json_lenient-3a18f07f93b721af/build-script-build"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#utf8parse@0.2.2","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf8parse-0.2.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"utf8parse","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf8parse-0.2.2/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libutf8parse-1869fb7867dfc50c.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rustc-hash@1.1.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustc-hash-1.1.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rustc_hash","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustc-hash-1.1.0/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/librustc_hash-ed41e293c0e25fe6.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#bit-vec@0.8.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bit-vec-0.8.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"bit_vec","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bit-vec-0.8.0/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libbit_vec-fa40ea14e371e964.rlib","/home/servius/.cache/cargo/target/debug/deps/libbit_vec-fa40ea14e371e964.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#range-traits@0.3.2","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/range-traits-0.3.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"range_traits","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/range-traits-0.3.2/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/librange_traits-d7fc1352fbdcaf11.rlib","/home/servius/.cache/cargo/target/debug/deps/librange_traits-d7fc1352fbdcaf11.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.145","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.145/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.145/build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","indexmap","preserve_order","raw_value","std"],"filenames":["/home/servius/.cache/cargo/target/debug/build/serde_json-e76781d8c80b6a14/build-script-build"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#arrayref@0.3.9","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/arrayref-0.3.9/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"arrayref","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/arrayref-0.3.9/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libarrayref-f21e9629a1d63cf1.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#quick-error@2.0.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quick-error-2.0.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"quick_error","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quick-error-2.0.1/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libquick_error-06cdc1f17fdcd808.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#unicase@2.8.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicase-2.8.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"unicase","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicase-2.8.1/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libunicase-64c40c83aec13095.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#bit-vec@0.8.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bit-vec-0.8.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"bit_vec","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bit-vec-0.8.0/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libbit_vec-5e6dc767e1cfc819.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#event-listener@2.5.3","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/event-listener-2.5.3/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"event_listener","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/event-listener-2.5.3/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libevent_listener-da07841f8f10f3de.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#y4m@0.8.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/y4m-0.8.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"y4m","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/y4m-0.8.0/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/liby4m-9a41a42c99c39f3c.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#unicode-width@0.2.2","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-width-0.2.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"unicode_width","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-width-0.2.2/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["cjk","default"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libunicode_width-2a47125f5b3a1e29.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#termcolor@1.4.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/termcolor-1.4.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"termcolor","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/termcolor-1.4.1/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libtermcolor-636a756f6388b07c.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#foldhash@0.1.5","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/foldhash-0.1.5/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"foldhash","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/foldhash-0.1.5/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libfoldhash-81ca180c44a16160.rlib","/home/servius/.cache/cargo/target/debug/deps/libfoldhash-81ca180c44a16160.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#foldhash@0.1.5","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/foldhash-0.1.5/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"foldhash","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/foldhash-0.1.5/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libfoldhash-950ed68680bcf804.rmeta"],"executable":null,"fresh":true} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#nix@0.29.0","linked_libs":[],"linked_paths":[],"cfgs":["linux","linux_android"],"env":[],"out_dir":"/home/servius/.cache/cargo/target/debug/build/nix-3c14104ccbc85216/out"} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#naga@25.0.1","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"/home/servius/.cache/cargo/target/debug/build/naga-491a439dd808412c/out"} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#pathfinder_simd@0.5.5","linked_libs":[],"linked_paths":[],"cfgs":["pf_rustc_nightly"],"env":[],"out_dir":"/home/servius/.cache/cargo/target/debug/build/pathfinder_simd-db35405e7ff44c61/out"} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#ciborium@0.2.2","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ciborium-0.2.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"ciborium","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ciborium-0.2.2/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libciborium-1d3905b419d69b5b.rlib","/home/servius/.cache/cargo/target/debug/deps/libciborium-1d3905b419d69b5b.rmeta"],"executable":null,"fresh":true} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#mime_guess@2.0.5","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[["MIME_TYPES_GENERATED_PATH","/home/servius/.cache/cargo/target/debug/build/mime_guess-75c5adcd9d38596a/out/mime_types_generated.rs"]],"out_dir":"/home/servius/.cache/cargo/target/debug/build/mime_guess-75c5adcd9d38596a/out"} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#bitstream-io@4.9.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitstream-io-4.9.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"bitstream_io","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitstream-io-4.9.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libbitstream_io-3c42bb2f112e4764.rmeta"],"executable":null,"fresh":true} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#naga@25.0.1","linked_libs":[],"linked_paths":[],"cfgs":["spv_out"],"env":[],"out_dir":"/home/servius/.cache/cargo/target/debug/build/naga-b9bb9f2cf9682874/out"} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#schemars_derive@1.1.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/schemars_derive-1.1.0/Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"schemars_derive","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/schemars_derive-1.1.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libschemars_derive-ee980f024313318e.so"],"executable":null,"fresh":true} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#rav1e@0.8.1","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[["PROFILE","debug"],["CARGO_CFG_TARGET_FEATURE","fxsr,sse,sse2,x87"],["CARGO_ENCODED_RUSTFLAGS",""]],"out_dir":"/home/servius/.cache/cargo/target/debug/build/rav1e-363d1ccb23717378/out"} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#futures@0.3.31","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"futures","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.31/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","async-await","default","executor","futures-executor","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libfutures-edbdc5e62fa27ab4.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#async-compression@0.4.33","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-compression-0.4.33/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"async_compression","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-compression-0.4.33/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["deflate","deflate64","futures-io","gzip"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libasync_compression-5c3cd5dd88b19ebc.rmeta"],"executable":null,"fresh":true} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#freetype-sys@0.20.1","linked_libs":["static=freetype2","stdc++"],"linked_paths":["native=/home/servius/.cache/cargo/target/debug/build/freetype-sys-ea766aa6d383f86d/out"],"cfgs":[],"env":[],"out_dir":"/home/servius/.cache/cargo/target/debug/build/freetype-sys-ea766aa6d383f86d/out"} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#idna@1.1.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/idna-1.1.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"idna","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/idna-1.1.0/src/lib.rs","edition":"2018","doc":true,"doctest":false,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","compiled_data","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libidna-da2eea42168dd21e.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#bit-set@0.8.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bit-set-0.8.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"bit_set","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bit-set-0.8.0/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libbit_set-28be5f54ec498177.rlib","/home/servius/.cache/cargo/target/debug/deps/libbit_set-28be5f54ec498177.rmeta"],"executable":null,"fresh":true} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde_json_lenient@0.2.4","linked_libs":[],"linked_paths":[],"cfgs":["fast_arithmetic=\"64\""],"env":[],"out_dir":"/home/servius/.cache/cargo/target/debug/build/serde_json_lenient-701dbe81115a7039/out"} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#codespan-reporting@0.12.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/codespan-reporting-0.12.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"codespan_reporting","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/codespan-reporting-0.12.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std","termcolor"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libcodespan_reporting-05a06e38667a9d6e.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#av-scenechange@0.14.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/av-scenechange-0.14.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"av_scenechange","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/av-scenechange-0.14.1/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libav_scenechange-4d86587892d728ad.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#btree-range-map@0.7.2","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/btree-range-map-0.7.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"btree_range_map","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/btree-range-map-0.7.2/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["serde"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libbtree_range_map-d5d198b597996f35.rlib","/home/servius/.cache/cargo/target/debug/deps/libbtree_range_map-d5d198b597996f35.rmeta"],"executable":null,"fresh":true} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.145","linked_libs":[],"linked_paths":[],"cfgs":["fast_arithmetic=\"64\""],"env":[],"out_dir":"/home/servius/.cache/cargo/target/debug/build/serde_json-c858b98b58cce9d2/out"} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tiny-skia-path@0.11.4","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tiny-skia-path-0.11.4/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tiny_skia_path","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tiny-skia-path-0.11.4/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libtiny_skia_path-dcd4998061d5885b.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#anstyle-parse@0.2.7","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-parse-0.2.7/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"anstyle_parse","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-parse-0.2.7/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","utf8"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libanstyle_parse-3aac24250026291e.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#bit-set@0.8.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bit-set-0.8.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"bit_set","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bit-set-0.8.0/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libbit_set-cb246d94c2dbc72d.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.15.5","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.15.5/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"hashbrown","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.15.5/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default-hasher","inline-more"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libhashbrown-b4e5ec7ade7e9225.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#hashbrown@0.15.5","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.15.5/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"hashbrown","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.15.5/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default-hasher","inline-more"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libhashbrown-57e7679a9c53f236.rlib","/home/servius/.cache/cargo/target/debug/deps/libhashbrown-57e7679a9c53f236.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#async-channel@1.9.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-channel-1.9.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"async_channel","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-channel-1.9.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libasync_channel-a0346cb26403e56a.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#codespan-reporting@0.12.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/codespan-reporting-0.12.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"codespan_reporting","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/codespan-reporting-0.12.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std","termcolor"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libcodespan_reporting-36720f47a42a923b.rlib","/home/servius/.cache/cargo/target/debug/deps/libcodespan_reporting-36720f47a42a923b.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#read-fonts@0.35.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/read-fonts-0.35.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"read_fonts","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/read-fonts-0.35.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libread_fonts-06372f1c4f8c71b8.rmeta"],"executable":null,"fresh":true} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#yeslogic-fontconfig-sys@6.0.0","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"/home/servius/.cache/cargo/target/debug/build/yeslogic-fontconfig-sys-0796048998fd9663/out"} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#av1-grain@0.2.5","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/av1-grain-0.2.5/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"av1_grain","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/av1-grain-0.2.5/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["create","default","diff","estimate","nom","num-rational","parse","v_frame"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libav1_grain-2ebcf1cf22f7bd8a.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#ref-cast@1.0.25","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ref-cast-1.0.25/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"ref_cast","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ref-cast-1.0.25/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libref_cast-649180623bae17a2.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#parking_lot_core@0.9.12","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"parking_lot_core","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libparking_lot_core-faa1db7de63ad647.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#paste@1.0.15","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/paste-1.0.15/Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"paste","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/paste-1.0.15/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libpaste-84c5659c7e86bf75.so"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rust-embed-utils@8.9.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rust-embed-utils-8.9.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rust_embed_utils","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rust-embed-utils-8.9.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["globset","include-exclude"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/librust_embed_utils-939b5ab7588a6181.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#native-tls@0.2.14","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/native-tls-0.2.14/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"native_tls","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/native-tls-0.2.14/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libnative_tls-2efcbed25634a634.rmeta"],"executable":null,"fresh":true} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#psm@0.1.28","linked_libs":["static=psm_s"],"linked_paths":["native=/home/servius/.cache/cargo/target/debug/build/psm-a6fa655aa0a4f089/out"],"cfgs":["asm","link_asm","switchable_stack"],"env":[],"out_dir":"/home/servius/.cache/cargo/target/debug/build/psm-a6fa655aa0a4f089/out"} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#proc-macro-error@1.0.4","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error-1.0.4/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"proc_macro_error","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error-1.0.4/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","syn","syn-error"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libproc_macro_error-3e0267aa75bc2ee3.rlib","/home/servius/.cache/cargo/target/debug/deps/libproc_macro_error-3e0267aa75bc2ee3.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tokio-rustls@0.26.4","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-rustls-0.26.4/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tokio_rustls","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-rustls-0.26.4/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["ring","tls12"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libtokio_rustls-17bf98bcfb9c5df3.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#cipher@0.4.4","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cipher-0.4.4/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"cipher","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cipher-0.4.4/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["block-padding","rand_core","zeroize"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libcipher-2ad6da20e35334a0.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#lyon_path@1.0.16","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lyon_path-1.0.16/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"lyon_path","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lyon_path-1.0.16/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/liblyon_path-ca5a779fd6cbac22.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#abnf@0.13.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/abnf-0.13.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"abnf","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/abnf-0.13.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libabnf-6b96c429b137c889.rlib","/home/servius/.cache/cargo/target/debug/deps/libabnf-6b96c429b137c889.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rust-embed-impl@8.9.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rust-embed-impl-8.9.0/Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"rust_embed_impl","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rust-embed-impl-8.9.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["include-exclude"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/librust_embed_impl-865bdf00a3fceb94.so"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.17","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.17/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"thiserror","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.17/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libthiserror-4dcff35c35138100.rlib","/home/servius/.cache/cargo/target/debug/deps/libthiserror-4dcff35c35138100.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rand@0.9.2","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rand","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.9.2/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","os_rng","std","std_rng","thread_rng"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/librand-07ac0b69086ace51.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#kv-log-macro@1.0.7","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/kv-log-macro-1.0.7/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"kv_log_macro","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/kv-log-macro-1.0.7/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libkv_log_macro-71460e5057cc4c4e.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#url@2.5.7","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.7/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"url","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.7/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","serde","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/liburl-154341daecdf6f41.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#maybe-rayon@0.1.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/maybe-rayon-0.1.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"maybe_rayon","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/maybe-rayon-0.1.1/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["rayon","threads"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libmaybe_rayon-cc72894586c851e4.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#async-global-executor@2.4.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-global-executor-2.4.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"async_global_executor","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-global-executor-2.4.1/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["async-io","default"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libasync_global_executor-4192535d48aa5575.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#hmac@0.12.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hmac-0.12.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"hmac","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hmac-0.12.1/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libhmac-1072034e18e7223b.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rand_chacha@0.3.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_chacha-0.3.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rand_chacha","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_chacha-0.3.1/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/librand_chacha-20f779f44a7ace2b.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#strum@0.26.3","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/strum-0.26.3/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"strum","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/strum-0.26.3/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["derive","strum_macros"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libstrum-21554d723bdbcd85.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rustls-native-certs@0.8.2","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-native-certs-0.8.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rustls_native_certs","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-native-certs-0.8.2/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/librustls_native_certs-f8e873a6e84aecf4.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#strum@0.26.3","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/strum-0.26.3/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"strum","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/strum-0.26.3/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["derive","strum_macros"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libstrum-0253d4002abcd5f5.rlib","/home/servius/.cache/cargo/target/debug/deps/libstrum-0253d4002abcd5f5.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rgb@0.8.52","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rgb-0.8.52/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rgb","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rgb-0.8.52/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["argb","as-bytes","bytemuck","default","grb"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/librgb-9379a08e594736f8.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#thiserror@1.0.69","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"thiserror","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libthiserror-63fedbd78e864019.rlib","/home/servius/.cache/cargo/target/debug/deps/libthiserror-63fedbd78e864019.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#num-iter@0.1.45","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-iter-0.1.45/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"num_iter","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-iter-0.1.45/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["i128","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libnum_iter-576ca6652c25b632.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#fax_derive@0.2.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fax_derive-0.2.0/Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"fax_derive","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fax_derive-0.2.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libfax_derive-4448b2f409f0d761.so"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#num-derive@0.4.2","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-derive-0.4.2/Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"num_derive","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-derive-0.4.2/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libnum_derive-6a97b7bdf0c17eba.so"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#dirs-sys@0.3.7","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dirs-sys-0.3.7/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"dirs_sys","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dirs-sys-0.3.7/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libdirs_sys-4ffbf41affc83408.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#simd_helpers@0.1.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/simd_helpers-0.1.0/Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"simd_helpers","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/simd_helpers-0.1.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libsimd_helpers-9416be8b9f1abf39.so"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#proc-macro-error-attr2@2.0.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error-attr2-2.0.0/Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"proc_macro_error_attr2","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error-attr2-2.0.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libproc_macro_error_attr2-0ff3ac22d781ede8.so"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#kurbo@0.11.3","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/kurbo-0.11.3/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"kurbo","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/kurbo-0.11.3/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libkurbo-7269ebd2e7287f40.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#stacker@0.1.22","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/stacker-0.1.22/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/stacker-0.1.22/build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/build/stacker-996acd68312e5cb2/build-script-build"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#spirv@0.3.0+sdk-1.3.268.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/spirv-0.3.0+sdk-1.3.268.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"spirv","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/spirv-0.3.0+sdk-1.3.268.0/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libspirv-b964c473f991dbf9.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#arrayvec@0.7.6","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/arrayvec-0.7.6/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"arrayvec","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/arrayvec-0.7.6/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libarrayvec-735047ae635bd647.rlib","/home/servius/.cache/cargo/target/debug/deps/libarrayvec-735047ae635bd647.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#siphasher@1.0.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-1.0.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"siphasher","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/siphasher-1.0.1/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libsiphasher-4ee4b2e62e72dce7.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#imgref@1.12.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/imgref-1.12.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"imgref","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/imgref-1.12.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","deprecated"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libimgref-f1b2d7e067933c1e.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#colorchoice@1.0.4","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/colorchoice-1.0.4/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"colorchoice","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/colorchoice-1.0.4/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libcolorchoice-3ce2363fd816ba66.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rustc-hash@2.1.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustc-hash-2.1.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rustc_hash","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustc-hash-2.1.1/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/librustc_hash-d564b212d2a909ef.rlib","/home/servius/.cache/cargo/target/debug/deps/librustc_hash-d564b212d2a909ef.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#home@0.5.12","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/home-0.5.12/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"home","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/home-0.5.12/src/lib.rs","edition":"2024","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libhome-9423d0c4c4d83191.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rustc-hash@1.1.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustc-hash-1.1.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rustc_hash","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustc-hash-1.1.0/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/librustc_hash-a94dc527c23693c9.rlib","/home/servius/.cache/cargo/target/debug/deps/librustc_hash-a94dc527c23693c9.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#new_debug_unreachable@1.0.6","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/new_debug_unreachable-1.0.6/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"debug_unreachable","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/new_debug_unreachable-1.0.6/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libdebug_unreachable-e38013e1085c6182.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#hexf-parse@0.2.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hexf-parse-0.2.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"hexf_parse","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hexf-parse-0.2.1/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libhexf_parse-d9c983dc7aa0b235.rlib","/home/servius/.cache/cargo/target/debug/deps/libhexf_parse-d9c983dc7aa0b235.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#waker-fn@1.2.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/waker-fn-1.2.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"waker_fn","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/waker-fn-1.2.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libwaker_fn-f0d4f805fbe8da2e.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#zune-core@0.4.12","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zune-core-0.4.12/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zune_core","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zune-core-0.4.12/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libzune_core-74f21c368290ff18.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#weezl@0.1.12","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/weezl-0.1.12/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"weezl","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/weezl-0.1.12/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libweezl-8071b87ac5ee48ad.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#anstyle-query@1.1.4","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-query-1.1.4/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"anstyle_query","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-query-1.1.4/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libanstyle_query-fefcbf7e59e9804b.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#zvariant@5.8.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zvariant-5.8.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zvariant","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zvariant-5.8.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","enumflags2","gvariant","url"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libzvariant-c601407b09c0b24b.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#unicode-bidi-mirroring@0.4.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-bidi-mirroring-0.4.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"unicode_bidi_mirroring","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-bidi-mirroring-0.4.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libunicode_bidi_mirroring-61aa8852c7bb25eb.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rustc-hash@2.1.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustc-hash-2.1.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rustc_hash","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustc-hash-2.1.1/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/librustc_hash-db361ce2683a5f1e.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#bitflags@1.3.2","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-1.3.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"bitflags","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-1.3.2/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libbitflags-e452f082b53802d5.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#dyn-clone@1.0.20","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dyn-clone-1.0.20/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"dyn_clone","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dyn-clone-1.0.20/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libdyn_clone-c4389c183a9cba0b.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#hexf-parse@0.2.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hexf-parse-0.2.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"hexf_parse","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hexf-parse-0.2.1/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libhexf_parse-e86c0a7bdc338983.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#unicode-ccc@0.4.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ccc-0.4.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"unicode_ccc","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ccc-0.4.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libunicode_ccc-2b1698d1edb7cb61.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#unicode-bidi@0.3.18","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-bidi-0.3.18/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"unicode_bidi","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-bidi-0.3.18/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","hardcoded-data","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libunicode_bidi-498d9e65889b2bc8.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#anstyle@1.0.13","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-1.0.13/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"anstyle","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-1.0.13/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libanstyle-003d74f4519a02e7.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#ryu@1.0.20","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.20/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"ryu","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.20/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libryu-df5b7d01ae0ee315.rlib","/home/servius/.cache/cargo/target/debug/deps/libryu-df5b7d01ae0ee315.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#hex_fmt@0.3.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hex_fmt-0.3.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"hex_fmt","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hex_fmt-0.3.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libhex_fmt-acdeeeda13e88e4b.rlib","/home/servius/.cache/cargo/target/debug/deps/libhex_fmt-acdeeeda13e88e4b.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#fastrand@1.9.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fastrand-1.9.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"fastrand","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fastrand-1.9.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libfastrand-1f5f8b655adaa45c.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#utf8-decode@1.0.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf8-decode-1.0.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"utf8_decode","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf8-decode-1.0.1/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libutf8_decode-e43ab738e846b14d.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#num-bigint-dig@0.8.6","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-bigint-dig-0.8.6/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-bigint-dig-0.8.6/build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","rand","serde","std","u64_digit","zeroize"],"filenames":["/home/servius/.cache/cargo/target/debug/build/num-bigint-dig-7d7be1b0382ca715/build-script-build"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#indoc@2.0.7","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indoc-2.0.7/Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"indoc","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indoc-2.0.7/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libindoc-6344f3ee413f10e0.so"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#bitflags@2.10.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.10.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"bitflags","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.10.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libbitflags-e4e7d343db8f8143.rlib","/home/servius/.cache/cargo/target/debug/deps/libbitflags-e4e7d343db8f8143.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#is_terminal_polyfill@1.70.2","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/is_terminal_polyfill-1.70.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"is_terminal_polyfill","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/is_terminal_polyfill-1.70.2/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libis_terminal_polyfill-91c8b24435be7c33.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.15","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itoa-1.0.15/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"itoa","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itoa-1.0.15/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libitoa-1d141a3a91828927.rlib","/home/servius/.cache/cargo/target/debug/deps/libitoa-1d141a3a91828927.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#raw-window-handle@0.6.2","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/raw-window-handle-0.6.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"raw_window_handle","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/raw-window-handle-0.6.2/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libraw_window_handle-e43558393831236b.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.3","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.3/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"once_cell","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.3/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","race"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libonce_cell-06be233056381e9a.rlib","/home/servius/.cache/cargo/target/debug/deps/libonce_cell-06be233056381e9a.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#noop_proc_macro@0.3.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/noop_proc_macro-0.3.0/Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"noop_proc_macro","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/noop_proc_macro-0.3.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libnoop_proc_macro-772cc1d4a76fb9c7.so"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#option-ext@0.2.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/option-ext-0.2.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"option_ext","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/option-ext-0.2.0/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/liboption_ext-17a1c2d92c022316.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#loop9@0.1.5","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/loop9-0.1.5/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"loop9","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/loop9-0.1.5/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libloop9-7ce2283ef56afe91.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#which@6.0.3","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/which-6.0.3/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"which","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/which-6.0.3/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libwhich-3f2cb9cf02d71cb1.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#gpui_collections@0.2.2","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gpui_collections-0.2.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"gpui_collections","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gpui_collections-0.2.2/src/collections.rs","edition":"2024","doc":true,"doctest":false,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libgpui_collections-2454123cfaf7c584.rlib","/home/servius/.cache/cargo/target/debug/deps/libgpui_collections-2454123cfaf7c584.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#fax@0.2.6","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fax-0.2.6/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"fax","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fax-0.2.6/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libfax-bceacf4ccbdbcc4c.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#proc-macro-error2@2.0.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error2-2.0.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"proc_macro_error2","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error2-2.0.1/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","syn-error"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libproc_macro_error2-ea934f96a74391fa.rlib","/home/servius/.cache/cargo/target/debug/deps/libproc_macro_error2-ea934f96a74391fa.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#hyper-rustls@0.27.7","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-rustls-0.27.7/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"hyper_rustls","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-rustls-0.27.7/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["http1","http2","native-tokio","ring","rustls-native-certs","tls12"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libhyper_rustls-197b3e2cbc5ad579.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#async-std@1.13.2","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-std-1.13.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"async_std","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-std-1.13.2/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","async-channel","async-global-executor","async-io","async-lock","async-process","crossbeam-utils","default","futures-channel","futures-core","futures-io","futures-lite","gloo-timers","kv-log-macro","log","memchr","once_cell","pin-project-lite","pin-utils","slab","std","unstable","wasm-bindgen-futures"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libasync_std-b9116ee242a85bca.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rand@0.8.5","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rand","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.5/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","getrandom","libc","rand_chacha","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/librand-7e6d39535ca251ef.rmeta"],"executable":null,"fresh":true} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#stacker@0.1.22","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"/home/servius/.cache/cargo/target/debug/build/stacker-77ae8fc91ac622c2/out"} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#zune-jpeg@0.4.21","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zune-jpeg-0.4.21/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zune_jpeg","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zune-jpeg-0.4.21/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","neon","std","x86"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libzune_jpeg-8ebedc105049afc1.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#zbus_names@4.2.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zbus_names-4.2.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zbus_names","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zbus_names-4.2.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libzbus_names-bed7f7eccdee6a07.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#schemars@1.1.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/schemars-1.1.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"schemars","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/schemars-1.1.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","derive","indexmap2","schemars_derive","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libschemars-e5e93b2db06f78cf.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#static-regular-grammar@2.0.2","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/static-regular-grammar-2.0.2/Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"static_regular_grammar","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/static-regular-grammar-2.0.2/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libstatic_regular_grammar-25cd6ed60bcdb3b3.so"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rustybuzz@0.20.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustybuzz-0.20.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rustybuzz","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustybuzz-0.20.1/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/librustybuzz-025a34ade9d03b7c.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#naga@25.0.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/naga-25.0.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"naga","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/naga-25.0.1/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["compact","default","wgsl-in"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libnaga-2a8620bae9813085.rlib","/home/servius/.cache/cargo/target/debug/deps/libnaga-2a8620bae9813085.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#png@0.17.16","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/png-0.17.16/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"png","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/png-0.17.16/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libpng-0ed0e8696ca38807.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#gpui_collections@0.2.2","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gpui_collections-0.2.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"gpui_collections","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gpui_collections-0.2.2/src/collections.rs","edition":"2024","doc":true,"doctest":false,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libgpui_collections-8cfe039a5da875a5.rmeta"],"executable":null,"fresh":true} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#num-bigint-dig@0.8.6","linked_libs":[],"linked_paths":[],"cfgs":["has_i128"],"env":[],"out_dir":"/home/servius/.cache/cargo/target/debug/build/num-bigint-dig-ea1131695e96ca6f/out"} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#naga@25.0.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/naga-25.0.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"naga","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/naga-25.0.1/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["compact","default","spv-out","wgsl-in"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libnaga-9e5d437f29634f9e.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.145","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.145/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"serde_json","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.145/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","indexmap","preserve_order","raw_value","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libserde_json-6873dc83452bacb3.rlib","/home/servius/.cache/cargo/target/debug/deps/libserde_json-6873dc83452bacb3.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#ash-window@0.13.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ash-window-0.13.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"ash_window","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ash-window-0.13.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libash_window-804143068a794472.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#anstream@0.6.21","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstream-0.6.21/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"anstream","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstream-0.6.21/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["auto","default","wincon"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libanstream-3a48ae7a6d7d3e14.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#pct-str@2.0.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pct-str-2.0.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"pct_str","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pct-str-2.0.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libpct_str-34fa7869373f8504.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rav1e@0.8.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rav1e-0.8.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rav1e","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rav1e-0.8.1/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["threading"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/librav1e-5918c3d412cc4dcb.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#dirs-sys@0.4.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dirs-sys-0.4.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"dirs_sys","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dirs-sys-0.4.1/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libdirs_sys-10855bd4b5d39e08.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#futures-lite@1.13.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-lite-1.13.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"futures_lite","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-lite-1.13.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","fastrand","futures-io","memchr","parking","std","waker-fn"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libfutures_lite-93e425d644fdbf9e.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#svgtypes@0.15.3","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/svgtypes-0.15.3/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"svgtypes","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/svgtypes-0.15.3/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libsvgtypes-4f3431b038af874b.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#dirs@4.0.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dirs-4.0.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"dirs","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dirs-4.0.0/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libdirs-743086716e855e3d.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#psm@0.1.28","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/psm-0.1.28/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"psm","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/psm-0.1.28/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libpsm-94d10aac29263913.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#parking_lot@0.12.5","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"parking_lot","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libparking_lot-168fc88e15a2ebd8.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde_json_lenient@0.2.4","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json_lenient-0.2.4/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"serde_json_lenient","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json_lenient-0.2.4/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","indexmap","preserve_order","raw_value","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libserde_json_lenient-9c9e3623368e62e9.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rust-embed@8.9.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rust-embed-8.9.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rust_embed","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rust-embed-8.9.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["include-exclude"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/librust_embed-82f5c8fecd590521.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#skrifa@0.37.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/skrifa-0.37.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"skrifa","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/skrifa-0.37.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libskrifa-40260c6a62a4f1ed.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tokio-native-tls@0.3.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-native-tls-0.3.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tokio_native_tls","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-native-tls-0.3.1/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libtokio_native_tls-81306b99566b6a34.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#nix@0.29.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.29.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"nix","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nix-0.29.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","feature","user"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libnix-23712a9a67ba64b9.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#pathfinder_simd@0.5.5","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pathfinder_simd-0.5.5/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"pathfinder_simd","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pathfinder_simd-0.5.5/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libpathfinder_simd-d2e4e2bd9421d478.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#async_zip@0.0.17","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async_zip-0.0.17/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"async_zip","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async_zip-0.0.17/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["async-compression","deflate","deflate64"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libasync_zip-7a7bcc335341e2c4.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#mime_guess@2.0.5","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mime_guess-2.0.5/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"mime_guess","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mime_guess-2.0.5/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libmime_guess-edf1bb4a9997394e.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#gpu-alloc@0.6.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gpu-alloc-0.6.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"gpu_alloc","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gpu-alloc-0.6.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libgpu_alloc-fce9cfcbdfdd6181.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#gpu-alloc-ash@0.7.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gpu-alloc-ash-0.7.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"gpu_alloc_ash","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gpu-alloc-ash-0.7.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libgpu_alloc_ash-f6ec9daa55b96d56.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#fontdb@0.23.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fontdb-0.23.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"fontdb","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fontdb-0.23.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["fontconfig","fontconfig-parser","fs","memmap","memmap2","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libfontdb-fa47e52b663e0b7b.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#simplecss@0.2.2","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/simplecss-0.2.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"simplecss","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/simplecss-0.2.2/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libsimplecss-21065a943c01964c.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#zbus@5.12.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zbus-5.12.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zbus","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zbus-5.12.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["async-executor","async-fs","async-io","async-lock","async-process","async-task","blocking","url"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libzbus-5d1e7daa939f98ed.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#command-fds@0.3.2","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/command-fds-0.3.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"command_fds","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/command-fds-0.3.2/src/lib.rs","edition":"2024","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libcommand_fds-a2b1cd3aeedf5020.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#smol@2.0.2","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/smol-2.0.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"smol","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/smol-2.0.2/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libsmol-4c08f322a5353f2e.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#hidden-trait@0.1.2","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hidden-trait-0.1.2/Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"hidden_trait","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hidden-trait-0.1.2/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libhidden_trait-dcb43bd6b8bb1a99.so"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#regex@1.12.2","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"regex","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.2/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","perf","perf-backtrack","perf-cache","perf-dfa","perf-inline","perf-literal","perf-onepass","std","unicode","unicode-age","unicode-bool","unicode-case","unicode-gencat","unicode-perl","unicode-script","unicode-segment"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libregex-1f9555549ac45d42.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rustls-pemfile@2.2.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pemfile-2.2.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rustls_pemfile","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pemfile-2.2.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/librustls_pemfile-5ad24b3dc61068e1.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tokio-socks@0.5.2","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-socks-0.5.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tokio_socks","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-socks-0.5.2/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","tokio"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libtokio_socks-2758944566b36888.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tempfile@3.23.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.23.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tempfile","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.23.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","getrandom"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libtempfile-a56e32f18e7b9484.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#pxfm@0.1.25","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pxfm-0.1.25/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"pxfm","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pxfm-0.1.25/src/lib.rs","edition":"2024","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libpxfm-2c6f37b23a5e7c0c.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#num-complex@0.4.6","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-complex-0.4.6/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"num_complex","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-complex-0.4.6/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libnum_complex-8eaef5c087e28dab.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#filetime@0.2.26","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/filetime-0.2.26/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"filetime","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/filetime-0.2.26/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libfiletime-919b0cdc45c1f5da.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#xattr@0.2.3","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/xattr-0.2.3/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"xattr","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/xattr-0.2.3/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","unsupported"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libxattr-c7770333254330e9.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#zune-inflate@0.2.54","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zune-inflate-0.2.54/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zune_inflate","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zune-inflate-0.2.54/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["simd-adler32","zlib"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libzune_inflate-c3a967a008548ff3.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#avif-serialize@0.8.6","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/avif-serialize-0.8.6/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"avif_serialize","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/avif-serialize-0.8.6/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libavif_serialize-5a459ae90d907596.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#is-docker@0.2.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/is-docker-0.2.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"is_docker","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/is-docker-0.2.0/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libis_docker-953b53a11fb45d1c.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#unicode-bidi-mirroring@0.2.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-bidi-mirroring-0.2.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"unicode_bidi_mirroring","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-bidi-mirroring-0.2.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libunicode_bidi_mirroring-6fb6ae0c54c16191.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#zed-font-kit@0.14.1-zed","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zed-font-kit-0.14.1-zed/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zed-font-kit-0.14.1-zed/build.rs","edition":"2018","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","source","source-fontconfig-dlopen","yeslogic-fontconfig-sys"],"filenames":["/home/servius/.cache/cargo/target/debug/build/zed-font-kit-faa160f1a368f041/build-script-build"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#float_next_after@1.0.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/float_next_after-1.0.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"float_next_after","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/float_next_after-1.0.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libfloat_next_after-4daca7a95833f27d.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#xmlwriter@0.1.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/xmlwriter-0.1.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"xmlwriter","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/xmlwriter-0.1.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libxmlwriter-2ab6fd24ba424cdc.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#unicode-vo@0.1.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-vo-0.1.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"unicode_vo","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-vo-0.1.0/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libunicode_vo-7abc4e0e4c40ae32.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#color_quant@1.1.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/color_quant-1.1.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"color_quant","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/color_quant-1.1.0/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libcolor_quant-11a22b34ffe7b799.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#clap_lex@0.7.6","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_lex-0.7.6/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"clap_lex","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_lex-0.7.6/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libclap_lex-8c78d3d0ae5b2813.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#bit_field@0.10.3","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bit_field-0.10.3/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"bit_field","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bit_field-0.10.3/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libbit_field-5f0cf7a55cf79a0f.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#yazi@0.2.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yazi-0.2.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"yazi","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yazi-0.2.1/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libyazi-0abd65532cb4f0d9.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#shlex@1.3.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/shlex-1.3.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"shlex","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/shlex-1.3.0/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libshlex-cb4bebafa889803b.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#pico-args@0.5.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pico-args-0.5.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"pico_args","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pico-args-0.5.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","eq-separator"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libpico_args-dabbfb36b2a282eb.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#ttf-parser@0.21.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ttf-parser-0.21.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"ttf_parser","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ttf-parser-0.21.1/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["apple-layout","glyph-names","opentype-layout","std","variable-fonts"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libttf_parser-84e1f8cbd375f5db.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#dunce@1.0.5","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dunce-1.0.5/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"dunce","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dunce-1.0.5/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libdunce-426eb779191997e3.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#zeno@0.3.3","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zeno-0.3.3/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zeno","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zeno-0.3.3/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["eval","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libzeno-29abe53fe5011a38.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#convert_case@0.4.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/convert_case-0.4.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"convert_case","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/convert_case-0.4.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libconvert_case-6c9508e044878f43.rlib","/home/servius/.cache/cargo/target/debug/deps/libconvert_case-6c9508e044878f43.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#data-url@0.3.2","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/data-url-0.3.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"data_url","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/data-url-0.3.2/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libdata_url-8205fff21f461b11.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#mint@0.5.9","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mint-0.5.9/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"mint","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mint-0.5.9/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libmint-687954f110b138d2.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#strsim@0.11.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/strsim-0.11.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"strsim","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/strsim-0.11.1/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libstrsim-fb4e44c253bc4641.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#unicode-ccc@0.2.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ccc-0.2.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"unicode_ccc","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ccc-0.2.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libunicode_ccc-2fbd5b8b156ee5bf.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#zune-core@0.5.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zune-core-0.5.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zune_core","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zune-core-0.5.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libzune_core-17f534dfdaab6a53.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#imagesize@0.13.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/imagesize-0.13.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"imagesize","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/imagesize-0.13.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libimagesize-0f7ec6aa06e04632.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#take-until@0.2.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/take-until-0.2.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"take_until","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/take-until-0.2.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libtake_until-d5f6635378fab2d6.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#lebe@0.5.3","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lebe-0.5.3/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"lebe","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lebe-0.5.3/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/liblebe-cee0d4819e760bd5.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#iri-string@0.7.9","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.9/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"iri_string","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iri-string-0.7.9/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libiri_string-602b3f3d732d5983.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#byteorder-lite@0.1.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/byteorder-lite-0.1.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"byteorder_lite","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/byteorder-lite-0.1.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libbyteorder_lite-f28b90862ab37a56.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#ttf-parser@0.20.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ttf-parser-0.20.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"ttf_parser","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ttf-parser-0.20.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["apple-layout","glyph-names","opentype-layout","std","variable-fonts"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libttf_parser-95fa4f484b0861dd.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#dtor-proc-macro@0.0.5","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dtor-proc-macro-0.0.5/Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"dtor_proc_macro","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dtor-proc-macro-0.0.5/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libdtor_proc_macro-5d8bb61146aee46d.so"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#ashpd@0.12.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ashpd-0.12.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"ashpd","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ashpd-0.12.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["async-std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libashpd-fc96b4f586edb170.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#zed-reqwest@0.12.15-zed","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zed-reqwest-0.12.15-zed/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zed_reqwest","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zed-reqwest-0.12.15-zed/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["__rustls","__rustls-ring","__tls","charset","h2","http2","macos-system-configuration","multipart","rustls-tls-native-roots","rustls-tls-native-roots-no-provider","socks","stream"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libzed_reqwest-7cb32f1d326057c5.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#is-wsl@0.4.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/is-wsl-0.4.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"is_wsl","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/is-wsl-0.4.0/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libis_wsl-5db009accbb6ec57.rmeta"],"executable":null,"fresh":true} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#zed-font-kit@0.14.1-zed","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"/home/servius/.cache/cargo/target/debug/build/zed-font-kit-2a133336b96f269c/out"} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#blade-graphics@0.7.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/blade-graphics-0.7.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"blade_graphics","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/blade-graphics-0.7.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libblade_graphics-3663594671c2fb87.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#lyon_tessellation@1.0.16","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lyon_tessellation-1.0.16/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"lyon_tessellation","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lyon_tessellation-1.0.16/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/liblyon_tessellation-cc92f4aac6b324d5.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#swash@0.2.6","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/swash-0.2.6/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"swash","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/swash-0.2.6/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["render","scale","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libswash-f9fade5cdbf83a1a.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#moxcms@0.7.9","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/moxcms-0.7.9/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"moxcms","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/moxcms-0.7.9/src/lib.rs","edition":"2024","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["avx","default","neon","sse"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libmoxcms-8914d12b734e1100.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#gif@0.14.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gif-0.14.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"gif","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gif-0.14.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["color_quant","default","raii_no_panic","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libgif-aee0174a31b354a6.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#zed-async-tar@0.5.0-zed","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zed-async-tar-0.5.0-zed/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zed_async_tar","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zed-async-tar-0.5.0-zed/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","xattr"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libzed_async_tar-46de69ddfcc8841d.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#ravif@0.12.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ravif-0.12.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"ravif","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ravif-0.12.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["threading"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libravif-df682cc6952620dc.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#num@0.4.3","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-0.4.3/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"num","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-0.4.3/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","num-bigint","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libnum-b2760a8c75232400.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#derive_more@0.99.20","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"derive_more","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive_more-0.99.20/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["add","add_assign","as_mut","as_ref","constructor","convert_case","default","deref","deref_mut","display","error","from","from_str","index","index_mut","into","into_iterator","is_variant","iterator","mul","mul_assign","not","rustc_version","sum","try_into","unwrap"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libderive_more-e76b7a9549fca067.so"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#pathfinder_geometry@0.5.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pathfinder_geometry-0.5.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"pathfinder_geometry","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pathfinder_geometry-0.5.1/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libpathfinder_geometry-d96daa7e2ab84a6e.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tiny-skia@0.11.4","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tiny-skia-0.11.4/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tiny_skia","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tiny-skia-0.11.4/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","png","png-format","simd","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libtiny_skia-454c5b0a87439491.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#iref-core@3.2.2","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iref-core-3.2.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"iref_core","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iref-core-3.2.2/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","serde"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libiref_core-c290bd7af882b5b4.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#hyper-tls@0.6.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-tls-0.6.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"hyper_tls","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-tls-0.6.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libhyper_tls-877e356ccb53c3e6.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#num-bigint-dig@0.8.6","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-bigint-dig-0.8.6/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"num_bigint_dig","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-bigint-dig-0.8.6/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","rand","serde","std","u64_digit","zeroize"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libnum_bigint_dig-ec229d8aab883588.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#gpui_perf@0.2.2","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gpui_perf-0.2.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"gpui_perf","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gpui_perf-0.2.2/src/lib.rs","edition":"2024","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libgpui_perf-69d02da94872719a.rlib","/home/servius/.cache/cargo/target/debug/deps/libgpui_perf-69d02da94872719a.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#stacker@0.1.22","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/stacker-0.1.22/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"stacker","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/stacker-0.1.22/src/lib.rs","edition":"2021","doc":true,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libstacker-d91673e7753901ca.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#gpui@0.2.2","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gpui-0.2.2/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gpui-0.2.2/build.rs","edition":"2024","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["ashpd","blade-graphics","blade-macros","blade-util","bytemuck","calloop-wayland-source","cosmic-text","filedescriptor","font-kit","open","wayland","wayland-backend","wayland-client","wayland-cursor","wayland-protocols","wayland-protocols-plasma","xkbcommon"],"filenames":["/home/servius/.cache/cargo/target/debug/build/gpui-f9e923862c4a1ee9/build-script-build"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#dirs@5.0.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dirs-5.0.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"dirs","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dirs-5.0.1/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libdirs-4367d26ab1bf12ad.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#dtor@0.0.6","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dtor-0.0.6/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"dtor","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dtor-0.0.6/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["__no_warn_on_missing_unsafe","proc_macro"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libdtor-1c8f62a122c55031.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#usvg@0.45.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/usvg-0.45.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"usvg","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/usvg-0.45.1/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["fontdb","memmap-fonts","rustybuzz","system-fonts","text","unicode-bidi","unicode-script","unicode-vo"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libusvg-5c40541a2ee0295d.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#clap_builder@4.5.51","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.51/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"clap_builder","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.5.51/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["color","error-context","help","std","suggestions","usage"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libclap_builder-61e7bbb7cc584bdb.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#exr@1.74.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/exr-1.74.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"exr","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/exr-1.74.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["rayon"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libexr-e5f8d4df6459d80e.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#fontdb@0.16.2","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fontdb-0.16.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"fontdb","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fontdb-0.16.2/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["fontconfig","fontconfig-parser","fs","memmap","memmap2","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libfontdb-9fba88e235f4d7fc.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#zune-jpeg@0.5.5","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zune-jpeg-0.5.5/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zune_jpeg","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zune-jpeg-0.5.5/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","neon","std","x86"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libzune_jpeg-6652abb030133350.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rustybuzz@0.14.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustybuzz-0.14.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rustybuzz","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustybuzz-0.14.1/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["libm","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/librustybuzz-93ba5182c7231652.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#image-webp@0.2.4","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/image-webp-0.2.4/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"image_webp","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/image-webp-0.2.4/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libimage_webp-ed6be052b7000753.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tower-http@0.6.6","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-http-0.6.6/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tower_http","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-http-0.6.6/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["follow-redirect","futures-util","iri-string","tower"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libtower_http-c9ee8bdf2dec50d9.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#gpui_util@0.2.2","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gpui_util-0.2.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"gpui_util","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gpui_util-0.2.2/src/util.rs","edition":"2024","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libgpui_util-51470b600003a058.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#stacksafe-macro@0.1.4","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/stacksafe-macro-0.1.4/Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"stacksafe_macro","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/stacksafe-macro-0.1.4/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libstacksafe_macro-00b4c6624d9a67af.so"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tiff@0.10.3","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tiff-0.10.3/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tiff","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tiff-0.10.3/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","deflate","fax","jpeg","lzw"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libtiff-da42b083b6fb5112.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#hkdf@0.12.4","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hkdf-0.12.4/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"hkdf","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hkdf-0.12.4/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libhkdf-43f061e99a98947a.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#pbkdf2@0.12.2","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pbkdf2-0.12.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"pbkdf2","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pbkdf2-0.12.2/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","hmac"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libpbkdf2-dd919ae531ef702c.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#yeslogic-fontconfig-sys@6.0.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yeslogic-fontconfig-sys-6.0.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"fontconfig_sys","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yeslogic-fontconfig-sys-6.0.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["dlopen"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libfontconfig_sys-70a7216ce65af9f1.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#cbc@0.1.2","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cbc-0.1.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"cbc","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cbc-0.1.2/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["block-padding","default","zeroize"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libcbc-5ae3f00f7f1f6b62.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#lyon_algorithms@1.0.16","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lyon_algorithms-1.0.16/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"lyon_algorithms","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lyon_algorithms-1.0.16/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/liblyon_algorithms-d2fb994f8d6e49ca.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#aes@0.8.4","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aes-0.8.4/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"aes","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aes-0.8.4/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["zeroize"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libaes-9fdfd93cadcf0a88.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#freetype-sys@0.20.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/freetype-sys-0.20.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"freetype_sys","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/freetype-sys-0.20.1/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libfreetype_sys-139da936daf5ef3e.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#wayland-protocols@0.31.2","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wayland-protocols-0.31.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"wayland_protocols","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wayland-protocols-0.31.2/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["client","staging","unstable","wayland-client"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libwayland_protocols-315b8a1da6e0bfcc.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#wayland-protocols@0.32.9","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wayland-protocols-0.32.9/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"wayland_protocols","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wayland-protocols-0.32.9/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["client","staging","unstable","wayland-client"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libwayland_protocols-75ca3e128a6a07a9.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#png@0.18.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/png-0.18.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"png","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/png-0.18.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libpng-b25b938bfe088b49.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#calloop@0.13.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/calloop-0.13.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"calloop","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/calloop-0.13.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libcalloop-7d296c7527c548ae.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#error-stack@0.6.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/error-stack-0.6.0/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/error-stack-0.6.0/build.rs","edition":"2021","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["backtrace","default","std"],"filenames":["/home/servius/.cache/cargo/target/debug/build/error-stack-8298dda819bde462/build-script-build"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#md-5@0.10.6","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/md-5-0.10.6/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"md5","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/md-5-0.10.6/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libmd5-fbe8e5b555f994f4.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#qoi@0.4.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/qoi-0.4.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"qoi","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/qoi-0.4.1/src/lib.rs","edition":"2021","doc":true,"doctest":false,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libqoi-bfd832348e7dc3b7.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#toml_parser@1.0.4","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_parser-1.0.4/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"toml_parser","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_parser-1.0.4/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libtoml_parser-7c44d6b41122a936.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#clap_derive@4.5.49","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_derive-4.5.49/Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"clap_derive","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_derive-4.5.49/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libclap_derive-cf5600d0c263cd24.so"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#nanorand@0.7.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nanorand-0.7.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"nanorand","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nanorand-0.7.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","chacha","default","getrandom","pcg64","std","tls","wyrand"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libnanorand-c7229e777bc930ba.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#gpui_derive_refineable@0.2.2","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gpui_derive_refineable-0.2.2/Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"gpui_derive_refineable","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gpui_derive_refineable-0.2.2/src/derive_refineable.rs","edition":"2024","doc":true,"doctest":false,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libgpui_derive_refineable-2b2c4d04508479fd.so"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#strum_macros@0.27.2","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/strum_macros-0.27.2/Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"strum_macros","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/strum_macros-0.27.2/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libstrum_macros-ea2e0753fa145eed.so"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#serde_spanned@1.0.3","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_spanned-1.0.3/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"serde_spanned","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_spanned-1.0.3/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","serde","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libserde_spanned-1831e6bc6cea25fe.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#toml_datetime@0.7.3","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_datetime-0.7.3/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"toml_datetime","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_datetime-0.7.3/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","serde","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libtoml_datetime-def49eed0f9fa706.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#crossbeam-queue@0.3.12","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-queue-0.3.12/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"crossbeam_queue","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-queue-0.3.12/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libcrossbeam_queue-a608d6023ef058c5.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#ctor-proc-macro@0.0.6","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ctor-proc-macro-0.0.6/Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"ctor_proc_macro","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ctor-proc-macro-0.0.6/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libctor_proc_macro-9aa0a1a9dafeeacc.so"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#sys-locale@0.3.2","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sys-locale-0.3.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"sys_locale","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sys-locale-0.3.2/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libsys_locale-de77b6db1235318b.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#svg_fmt@0.4.5","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/svg_fmt-0.4.5/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"svg_fmt","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/svg_fmt-0.4.5/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libsvg_fmt-ec6da37dbbd7676f.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#grid@0.18.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/grid-0.18.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"grid","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/grid-0.18.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libgrid-562b02a6fe96e1fd.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#pathdiff@0.2.3","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pathdiff-0.2.3/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"pathdiff","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pathdiff-0.2.3/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libpathdiff-75000f9ba1704ca6.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#float-ord@0.3.2","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/float-ord-0.3.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"float_ord","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/float-ord-0.3.2/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libfloat_ord-f944208f1178d1a9.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#as-raw-xcb-connection@1.0.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/as-raw-xcb-connection-1.0.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"as_raw_xcb_connection","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/as-raw-xcb-connection-1.0.1/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","default"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libas_raw_xcb_connection-56411a6240577dc8.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#unicode-linebreak@0.1.5","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-linebreak-0.1.5/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"unicode_linebreak","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-linebreak-0.1.5/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libunicode_linebreak-11b2b74ff34c1913.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#self_cell@1.2.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/self_cell-1.2.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"self_cell","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/self_cell-1.2.1/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libself_cell-6ceab93dcea45378.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#xcursor@0.3.10","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/xcursor-0.3.10/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"xcursor","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/xcursor-0.3.10/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libxcursor-316f2b6b40998e7d.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#unicode-segmentation@1.12.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-segmentation-1.12.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"unicode_segmentation","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-segmentation-1.12.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libunicode_segmentation-b4e7787bd375b06a.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#byteorder@1.5.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/byteorder-1.5.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"byteorder","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/byteorder-1.5.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libbyteorder-13ef6e617b76e467.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#blurhash@0.2.3","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/blurhash-0.2.3/Cargo.toml","target":{"kind":["custom-build"],"crate_types":["bin"],"name":"build-script-build","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/blurhash-0.2.3/build.rs","edition":"2018","doc":false,"doctest":false,"test":false},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","fast-linear-to-srgb"],"filenames":["/home/servius/.cache/cargo/target/debug/build/blurhash-cf7563d10c614430/build-script-build"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#toml_writer@1.0.4","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_writer-1.0.4/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"toml_writer","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_writer-1.0.4/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libtoml_writer-a452d02cdbf98ec9.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#pollster@0.2.5","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pollster-0.2.5/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"pollster","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pollster-0.2.5/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libpollster-1dc9f20c86e6086f.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#rangemap@1.6.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rangemap-1.6.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"rangemap","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rangemap-1.6.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/librangemap-c285a18a4509d897.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#smol_str@0.2.2","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/smol_str-0.2.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"smol_str","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/smol_str-0.2.2/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libsmol_str-013278dc5e7eb3e8.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#atomic@0.5.3","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/atomic-0.5.3/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"atomic","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/atomic-0.5.3/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","fallback"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libatomic-a594552cf36d50d7.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#xkeysym@0.2.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/xkeysym-0.2.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"xkeysym","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/xkeysym-0.2.1/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libxkeysym-bcf7d87ceee01563.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#resvg@0.45.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/resvg-0.45.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"resvg","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/resvg-0.45.1/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["memmap-fonts","system-fonts","text"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libresvg-0e2b299128e74934.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#gpui_http_client@0.2.2","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gpui_http_client-0.2.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"gpui_http_client","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gpui_http_client-0.2.2/src/http_client.rs","edition":"2024","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libgpui_http_client-e516e08048b997df.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#image@0.25.9","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/image-0.25.9/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"image","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/image-0.25.9/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["avif","bmp","dds","default","default-formats","exr","ff","gif","hdr","ico","jpeg","png","pnm","qoi","rayon","tga","tiff","webp"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libimage-642cce0f02b334b3.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#stacksafe@0.1.4","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/stacksafe-0.1.4/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"stacksafe","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/stacksafe-0.1.4/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libstacksafe-e2bd83828b8a473b.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#calloop-wayland-source@0.3.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/calloop-wayland-source-0.3.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"calloop_wayland_source","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/calloop-wayland-source-0.3.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libcalloop_wayland_source-c87411a65cfea6cd.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#lyon@1.0.16","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lyon-1.0.16/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"lyon","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lyon-1.0.16/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/liblyon-3b00b77d6f194513.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#reqwest@0.12.24","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.24/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"reqwest","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reqwest-0.12.24/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["__tls","charset","default","default-tls","h2","http2","json","system-proxy"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libreqwest-99a6af22af0e3e88.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#gpui_refineable@0.2.2","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gpui_refineable-0.2.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"gpui_refineable","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gpui_refineable-0.2.2/src/refineable.rs","edition":"2024","doc":true,"doctest":false,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libgpui_refineable-4f171c3adfb8b0e9.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#wayland-protocols-plasma@0.2.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wayland-protocols-plasma-0.2.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"wayland_protocols_plasma","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wayland-protocols-plasma-0.2.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["client","wayland-client"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libwayland_protocols_plasma-72ca8b8047af4f6b.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#flume@0.11.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flume-0.11.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"flume","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/flume-0.11.1/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["async","default","eventual-fairness","futures-core","futures-sink","nanorand","select"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libflume-a93518852f7cac1c.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#oo7@0.5.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/oo7-0.5.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"oo7","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/oo7-0.5.0/src/lib.rs","edition":"2024","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["async-std","native_crypto"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/liboo7-f8a1e97d1eef7bc7.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#postage@0.5.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/postage-0.5.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"postage","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/postage-0.5.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["blocking","default","futures","futures-traits","log","logging","pollster"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libpostage-c09548a1a0a1a305.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#ctor@0.4.3","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ctor-0.4.3/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"ctor","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ctor-0.4.3/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["__no_warn_on_missing_unsafe","default","dtor","proc_macro"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libctor-96213aed9466025c.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#xkbcommon@0.8.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/xkbcommon-0.8.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"xkbcommon","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/xkbcommon-0.8.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["as-raw-xcb-connection","default","memmap2","wayland","x11"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libxkbcommon-0415a42d67b501d5.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#toml@0.9.8","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-0.9.8/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"toml","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-0.9.8/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","display","parse","serde","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libtoml-1060acb3fd5a2e0d.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#open@5.3.2","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/open-5.3.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"open","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/open-5.3.2/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libopen-908cdcc843f0a1a7.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#zed-font-kit@0.14.1-zed","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zed-font-kit-0.14.1-zed/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"zed_font_kit","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zed-font-kit-0.14.1-zed/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","source","source-fontconfig-dlopen","yeslogic-fontconfig-sys"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libzed_font_kit-e6e59037b4cbf4b3.rmeta"],"executable":null,"fresh":true} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#blurhash@0.2.3","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"/home/servius/.cache/cargo/target/debug/build/blurhash-489fcc5bc07b41bb/out"} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#wayland-cursor@0.31.11","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wayland-cursor-0.31.11/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"wayland_cursor","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wayland-cursor-0.31.11/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libwayland_cursor-c8fdf412eae8a87a.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#etagere@0.2.15","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/etagere-0.2.15/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"etagere","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/etagere-0.2.15/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libetagere-5018227869df202f.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#taffy@0.9.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/taffy-0.9.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"taffy","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/taffy-0.9.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","block_layout","calc","content_size","default","detailed_layout_info","flexbox","grid","std","taffy_tree"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libtaffy-2709b27f4d1663f0.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#cosmic-text@0.14.2","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cosmic-text-0.14.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"cosmic_text","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cosmic-text-0.14.2/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","fontconfig","std","swash","sys-locale"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libcosmic_text-ca5c5166d3181b8b.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#ashpd@0.11.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ashpd-0.11.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"ashpd","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ashpd-0.11.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["async-std","wayland","wayland-backend","wayland-client","wayland-protocols"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libashpd-73434512591f35d0.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#strum@0.27.2","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/strum-0.27.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"strum","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/strum-0.27.2/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","derive","std","strum_macros"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libstrum-ce9802417fadad54.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#clap@4.5.51","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.51/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"clap","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.5.51/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["color","default","derive","error-context","help","std","suggestions","usage"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libclap-2a9a676a778a0abf.rmeta"],"executable":null,"fresh":true} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#error-stack@0.6.0","linked_libs":[],"linked_paths":[],"cfgs":["nightly"],"env":[],"out_dir":"/home/servius/.cache/cargo/target/debug/build/error-stack-e77108f162f0cad8/out"} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#iref@3.2.2","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iref-3.2.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"iref","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iref-3.2.2/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","serde"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libiref-da76f0ce2cd7777b.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#gpui_util_macros@0.2.2","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gpui_util_macros-0.2.2/Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"gpui_util_macros","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gpui_util_macros-0.2.2/src/util_macros.rs","edition":"2024","doc":true,"doctest":false,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libgpui_util_macros-00263b12525fbd1d.so"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#blade-util@0.3.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/blade-util-0.3.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"blade_util","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/blade-util-0.3.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libblade_util-b6122e9faefcbde4.rmeta"],"executable":null,"fresh":true} +{"reason":"build-script-executed","package_id":"registry+https://github.com/rust-lang/crates.io-index#gpui@0.2.2","linked_libs":[],"linked_paths":[],"cfgs":[],"env":[],"out_dir":"/home/servius/.cache/cargo/target/debug/build/gpui-0da5029a1b4458b8/out"} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#sharded-slab@0.1.7","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sharded-slab-0.1.7/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"sharded_slab","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sharded-slab-0.1.7/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libsharded_slab-77d1dc3092b8cb04.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tracing-log@0.2.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-log-0.2.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tracing_log","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-log-0.2.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["log-tracer","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libtracing_log-18058fd2803e938e.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#gpui_sum_tree@0.2.2","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gpui_sum_tree-0.2.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"gpui_sum_tree","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gpui_sum_tree-0.2.2/src/sum_tree.rs","edition":"2024","doc":true,"doctest":false,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libgpui_sum_tree-7996cf1453f8d189.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#gpui_semantic_version@0.2.2","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gpui_semantic_version-0.2.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"gpui_semantic_version","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gpui_semantic_version-0.2.2/src/semantic_version.rs","edition":"2024","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libgpui_semantic_version-ccb20656a4474bd1.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#matchers@0.2.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/matchers-0.2.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"matchers","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/matchers-0.2.0/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libmatchers-76acb9f5d5f0d0cf.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#filedescriptor@0.8.3","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/filedescriptor-0.8.3/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"filedescriptor","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/filedescriptor-0.8.3/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libfiledescriptor-fc34e720cbacf48e.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#blade-macros@0.3.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/blade-macros-0.3.0/Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"blade_macros","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/blade-macros-0.3.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libblade_macros-42eb9ae4ecfe6abe.so"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#gpui-macros@0.2.2","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gpui-macros-0.2.2/Cargo.toml","target":{"kind":["proc-macro"],"crate_types":["proc-macro"],"name":"gpui_macros","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gpui-macros-0.2.2/src/gpui_macros.rs","edition":"2024","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":0,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libgpui_macros-91f4edb19fe6bb17.so"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#num_cpus@1.17.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num_cpus-1.17.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"num_cpus","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num_cpus-1.17.0/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libnum_cpus-2de89d1a1973703a.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#thread_local@1.1.9","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thread_local-1.1.9/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"thread_local","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thread_local-1.1.9/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libthread_local-a491c5309c39525c.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#seahash@4.1.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/seahash-4.1.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"seahash","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/seahash-4.1.0/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libseahash-06a45d00dda71917.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#inventory@0.3.21","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/inventory-0.3.21/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"inventory","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/inventory-0.3.21/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libinventory-f42d6efef157982b.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#nu-ansi-term@0.50.3","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nu-ansi-term-0.50.3/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"nu_ansi_term","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nu-ansi-term-0.50.3/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libnu_ansi_term-bb9422aad2de950a.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tap@1.0.1","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tap-1.0.1/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tap","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tap-1.0.1/src/lib.rs","edition":"2015","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libtap-63804cc612d1b0c5.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#blurhash@0.2.3","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/blurhash-0.2.3/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"blurhash","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/blurhash-0.2.3/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default","fast-linear-to-srgb"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libblurhash-62c93ffe4f043eaa.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#tracing-subscriber@0.3.20","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.20/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"tracing_subscriber","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.20/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["alloc","ansi","default","env-filter","fmt","matchers","nu-ansi-term","once_cell","registry","sharded-slab","smallvec","std","thread_local","tracing","tracing-log"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libtracing_subscriber-49ef8db339b3e9f2.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#gpui@0.2.2","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gpui-0.2.2/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"gpui","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gpui-0.2.2/src/gpui.rs","edition":"2024","doc":true,"doctest":false,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["ashpd","blade-graphics","blade-macros","blade-util","bytemuck","calloop-wayland-source","cosmic-text","filedescriptor","font-kit","open","wayland","wayland-backend","wayland-client","wayland-cursor","wayland-protocols","wayland-protocols-plasma","xkbcommon"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libgpui-409848dae06c5f69.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#error-stack@0.6.0","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/error-stack-0.6.0/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"error_stack","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/error-stack-0.6.0/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["backtrace","default","std"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/liberror_stack-2b9c5031711078ea.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#clap_complete@4.5.60","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_complete-4.5.60/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"clap_complete","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_complete-4.5.60/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":["default"],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libclap_complete-6abc5768326b277f.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"registry+https://github.com/rust-lang/crates.io-index#dotenvy@0.15.7","manifest_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dotenvy-0.15.7/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"dotenvy","src_path":"/home/servius/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dotenvy-0.15.7/src/lib.rs","edition":"2018","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libdotenvy-e17b86d6408d90e0.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-artifact","package_id":"path+file:///home/servius/Projects/jello/api#0.1.0","manifest_path":"/home/servius/Projects/jello/api/Cargo.toml","target":{"kind":["lib"],"crate_types":["lib"],"name":"api","src_path":"/home/servius/Projects/jello/api/src/lib.rs","edition":"2024","doc":true,"doctest":true,"test":true},"profile":{"opt_level":"0","debuginfo":2,"debug_assertions":true,"overflow_checks":true,"test":false},"features":[],"filenames":["/home/servius/.cache/cargo/target/debug/deps/libapi-265fb11f7e1fe7d8.rmeta"],"executable":null,"fresh":true} +{"reason":"compiler-message","package_id":"path+file:///home/servius/Projects/jello#0.1.0","manifest_path":"/home/servius/Projects/jello/Cargo.toml","target":{"kind":["bin"],"crate_types":["bin"],"name":"jello","src_path":"/home/servius/Projects/jello/src/main.rs","edition":"2024","doc":true,"doctest":false,"test":true},"message":{"$message_type":"diagnostic","message":"unused import: `Report`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"src/errors.rs","byte_start":22,"byte_end":28,"line_start":1,"line_end":1,"column_start":23,"column_end":29,"is_primary":true,"text":[{"text":"pub use error_stack::{Report, ResultExt};","highlight_start":23,"highlight_end":29}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_imports)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"remove the unused import","code":null,"level":"help","spans":[{"file_name":"src/errors.rs","byte_start":22,"byte_end":30,"line_start":1,"line_end":1,"column_start":23,"column_end":31,"is_primary":true,"text":[{"text":"pub use error_stack::{Report, ResultExt};","highlight_start":23,"highlight_end":31}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null},{"file_name":"src/errors.rs","byte_start":21,"byte_end":22,"line_start":1,"line_end":1,"column_start":22,"column_end":23,"is_primary":true,"text":[{"text":"pub use error_stack::{Report, ResultExt};","highlight_start":22,"highlight_end":23}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null},{"file_name":"src/errors.rs","byte_start":39,"byte_end":40,"line_start":1,"line_end":1,"column_start":40,"column_end":41,"is_primary":true,"text":[{"text":"pub use error_stack::{Report, ResultExt};","highlight_start":40,"highlight_end":41}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused import: `Report`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0msrc/errors.rs:1:23\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use error_stack::{Report, ResultExt};\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(unused_imports)]` (part of `#[warn(unused)]`) on by default\n\n"}} +{"reason":"compiler-message","package_id":"path+file:///home/servius/Projects/jello#0.1.0","manifest_path":"/home/servius/Projects/jello/Cargo.toml","target":{"kind":["bin"],"crate_types":["bin"],"name":"jello","src_path":"/home/servius/Projects/jello/src/main.rs","edition":"2024","doc":true,"doctest":false,"test":true},"message":{"$message_type":"diagnostic","message":"unused import: `JellyfinClient`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"src/main.rs","byte_start":22,"byte_end":36,"line_start":2,"line_end":2,"column_start":11,"column_end":25,"is_primary":true,"text":[{"text":"use api::{JellyfinClient, JellyfinConfig};","highlight_start":11,"highlight_end":25}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove the unused import","code":null,"level":"help","spans":[{"file_name":"src/main.rs","byte_start":22,"byte_end":38,"line_start":2,"line_end":2,"column_start":11,"column_end":27,"is_primary":true,"text":[{"text":"use api::{JellyfinClient, JellyfinConfig};","highlight_start":11,"highlight_end":27}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null},{"file_name":"src/main.rs","byte_start":21,"byte_end":22,"line_start":2,"line_end":2,"column_start":10,"column_end":11,"is_primary":true,"text":[{"text":"use api::{JellyfinClient, JellyfinConfig};","highlight_start":10,"highlight_end":11}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null},{"file_name":"src/main.rs","byte_start":52,"byte_end":53,"line_start":2,"line_end":2,"column_start":41,"column_end":42,"is_primary":true,"text":[{"text":"use api::{JellyfinClient, JellyfinConfig};","highlight_start":41,"highlight_end":42}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused import: `JellyfinClient`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0msrc/main.rs:2:11\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2\u001b[0m \u001b[1m\u001b[94m|\u001b[0m use api::{JellyfinClient, JellyfinConfig};\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^\u001b[0m\n\n"}} +{"reason":"compiler-message","package_id":"path+file:///home/servius/Projects/jello#0.1.0","manifest_path":"/home/servius/Projects/jello/Cargo.toml","target":{"kind":["bin"],"crate_types":["bin"],"name":"jello","src_path":"/home/servius/Projects/jello/src/main.rs","edition":"2024","doc":true,"doctest":false,"test":true},"message":{"$message_type":"diagnostic","message":"unused import: `Report`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"src/errors.rs","byte_start":22,"byte_end":28,"line_start":1,"line_end":1,"column_start":23,"column_end":29,"is_primary":true,"text":[{"text":"pub use error_stack::{Report, ResultExt};","highlight_start":23,"highlight_end":29}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_imports)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"remove the unused import","code":null,"level":"help","spans":[{"file_name":"src/errors.rs","byte_start":22,"byte_end":30,"line_start":1,"line_end":1,"column_start":23,"column_end":31,"is_primary":true,"text":[{"text":"pub use error_stack::{Report, ResultExt};","highlight_start":23,"highlight_end":31}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null},{"file_name":"src/errors.rs","byte_start":21,"byte_end":22,"line_start":1,"line_end":1,"column_start":22,"column_end":23,"is_primary":true,"text":[{"text":"pub use error_stack::{Report, ResultExt};","highlight_start":22,"highlight_end":23}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null},{"file_name":"src/errors.rs","byte_start":39,"byte_end":40,"line_start":1,"line_end":1,"column_start":40,"column_end":41,"is_primary":true,"text":[{"text":"pub use error_stack::{Report, ResultExt};","highlight_start":40,"highlight_end":41}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused import: `Report`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0msrc/errors.rs:1:23\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use error_stack::{Report, ResultExt};\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(unused_imports)]` (part of `#[warn(unused)]`) on by default\n\n"}} +{"reason":"compiler-message","package_id":"path+file:///home/servius/Projects/jello#0.1.0","manifest_path":"/home/servius/Projects/jello/Cargo.toml","target":{"kind":["bin"],"crate_types":["bin"],"name":"jello","src_path":"/home/servius/Projects/jello/src/main.rs","edition":"2024","doc":true,"doctest":false,"test":true},"message":{"$message_type":"diagnostic","message":"unused import: `JellyfinClient`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"src/main.rs","byte_start":22,"byte_end":36,"line_start":2,"line_end":2,"column_start":11,"column_end":25,"is_primary":true,"text":[{"text":"use api::{JellyfinClient, JellyfinConfig};","highlight_start":11,"highlight_end":25}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove the unused import","code":null,"level":"help","spans":[{"file_name":"src/main.rs","byte_start":22,"byte_end":38,"line_start":2,"line_end":2,"column_start":11,"column_end":27,"is_primary":true,"text":[{"text":"use api::{JellyfinClient, JellyfinConfig};","highlight_start":11,"highlight_end":27}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null},{"file_name":"src/main.rs","byte_start":21,"byte_end":22,"line_start":2,"line_end":2,"column_start":10,"column_end":11,"is_primary":true,"text":[{"text":"use api::{JellyfinClient, JellyfinConfig};","highlight_start":10,"highlight_end":11}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null},{"file_name":"src/main.rs","byte_start":52,"byte_end":53,"line_start":2,"line_end":2,"column_start":41,"column_end":42,"is_primary":true,"text":[{"text":"use api::{JellyfinClient, JellyfinConfig};","highlight_start":41,"highlight_end":42}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused import: `JellyfinClient`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0msrc/main.rs:2:11\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2\u001b[0m \u001b[1m\u001b[94m|\u001b[0m use api::{JellyfinClient, JellyfinConfig};\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^\u001b[0m\n\n"}} +{"reason":"compiler-message","package_id":"path+file:///home/servius/Projects/jello#0.1.0","manifest_path":"/home/servius/Projects/jello/Cargo.toml","target":{"kind":["bin"],"crate_types":["bin"],"name":"jello","src_path":"/home/servius/Projects/jello/src/main.rs","edition":"2024","doc":true,"doctest":false,"test":true},"message":{"$message_type":"diagnostic","message":"failed to resolve: use of unresolved module or unlinked crate `iced_ui`","code":{"code":"E0433","explanation":"An undeclared crate, module, or type was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n\nIf you've expected to use a crate name:\n\n```compile_fail\nuse ferris_wheel::BigO;\n// error: failed to resolve: use of undeclared module or unlinked crate\n```\n\nMake sure the crate has been added as a dependency in `Cargo.toml`.\n\nTo use a module from your current crate, add the `crate::` prefix to the path.\n"},"level":"error","spans":[{"file_name":"src/main.rs","byte_start":742,"byte_end":749,"line_start":25,"line_end":25,"column_start":5,"column_end":12,"is_primary":true,"text":[{"text":" iced_ui::ui(jellyfin);","highlight_start":5,"highlight_end":12}],"label":"use of unresolved module or unlinked crate `iced_ui`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if you wanted to use a crate named `iced_ui`, use `cargo add iced_ui` to add it to your `Cargo.toml`","code":null,"level":"help","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[91merror[E0433]\u001b[0m\u001b[1m: failed to resolve: use of unresolved module or unlinked crate `iced_ui`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0msrc/main.rs:25:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m25\u001b[0m \u001b[1m\u001b[94m|\u001b[0m iced_ui::ui(jellyfin);\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[91m^^^^^^^\u001b[0m \u001b[1m\u001b[91muse of unresolved module or unlinked crate `iced_ui`\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mhelp\u001b[0m: if you wanted to use a crate named `iced_ui`, use `cargo add iced_ui` to add it to your `Cargo.toml`\n\n"}} +{"reason":"compiler-message","package_id":"path+file:///home/servius/Projects/jello#0.1.0","manifest_path":"/home/servius/Projects/jello/Cargo.toml","target":{"kind":["bin"],"crate_types":["bin"],"name":"jello","src_path":"/home/servius/Projects/jello/src/main.rs","edition":"2024","doc":true,"doctest":false,"test":true},"message":{"$message_type":"diagnostic","message":"failed to resolve: use of unresolved module or unlinked crate `iced_ui`","code":{"code":"E0433","explanation":"An undeclared crate, module, or type was used.\n\nErroneous code example:\n\n```compile_fail,E0433\nlet map = HashMap::new();\n// error: failed to resolve: use of undeclared type `HashMap`\n```\n\nPlease verify you didn't misspell the type/module's name or that you didn't\nforget to import it:\n\n```\nuse std::collections::HashMap; // HashMap has been imported.\nlet map: HashMap = HashMap::new(); // So it can be used!\n```\n\nIf you've expected to use a crate name:\n\n```compile_fail\nuse ferris_wheel::BigO;\n// error: failed to resolve: use of undeclared module or unlinked crate\n```\n\nMake sure the crate has been added as a dependency in `Cargo.toml`.\n\nTo use a module from your current crate, add the `crate::` prefix to the path.\n"},"level":"error","spans":[{"file_name":"src/main.rs","byte_start":742,"byte_end":749,"line_start":25,"line_end":25,"column_start":5,"column_end":12,"is_primary":true,"text":[{"text":" iced_ui::ui(jellyfin);","highlight_start":5,"highlight_end":12}],"label":"use of unresolved module or unlinked crate `iced_ui`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if you wanted to use a crate named `iced_ui`, use `cargo add iced_ui` to add it to your `Cargo.toml`","code":null,"level":"help","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[91merror[E0433]\u001b[0m\u001b[1m: failed to resolve: use of unresolved module or unlinked crate `iced_ui`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0msrc/main.rs:25:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m25\u001b[0m \u001b[1m\u001b[94m|\u001b[0m iced_ui::ui(jellyfin);\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[91m^^^^^^^\u001b[0m \u001b[1m\u001b[91muse of unresolved module or unlinked crate `iced_ui`\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mhelp\u001b[0m: if you wanted to use a crate named `iced_ui`, use `cargo add iced_ui` to add it to your `Cargo.toml`\n\n"}} +{"reason":"compiler-message","package_id":"path+file:///home/servius/Projects/jello#0.1.0","manifest_path":"/home/servius/Projects/jello/Cargo.toml","target":{"kind":["bin"],"crate_types":["bin"],"name":"jello","src_path":"/home/servius/Projects/jello/src/main.rs","edition":"2024","doc":true,"doctest":false,"test":true},"message":{"$message_type":"diagnostic","message":"For more information about this error, try `rustc --explain E0433`.","code":null,"level":"failure-note","spans":[],"children":[],"rendered":"\u001b[1mFor more information about this error, try `rustc --explain E0433`.\u001b[0m\n"}} +{"reason":"compiler-message","package_id":"path+file:///home/servius/Projects/jello#0.1.0","manifest_path":"/home/servius/Projects/jello/Cargo.toml","target":{"kind":["bin"],"crate_types":["bin"],"name":"jello","src_path":"/home/servius/Projects/jello/src/main.rs","edition":"2024","doc":true,"doctest":false,"test":true},"message":{"$message_type":"diagnostic","message":"For more information about this error, try `rustc --explain E0433`.","code":null,"level":"failure-note","spans":[],"children":[],"rendered":"\u001b[1mFor more information about this error, try `rustc --explain E0433`.\u001b[0m\n"}} +{"reason":"build-finished","success":false} diff --git a/src/ui.rs b/src/ui.rs deleted file mode 100644 index ed8a323..0000000 --- a/src/ui.rs +++ /dev/null @@ -1,265 +0,0 @@ -// mod movies; -// mod player; -// mod series; -use ::tap::*; - -use std::{collections::BTreeMap, sync::Arc}; - -use gpui::{ - App, Application, Bounds, ClickEvent, Context, ImageId, ImageSource, RenderImage, Resource, - SharedString, Window, WindowBounds, WindowOptions, actions, div, prelude::*, px, rgb, size, -}; - -#[derive(Clone, Debug)] -pub struct AppState { - pub title: SharedString, - pub items: BTreeMap, - pub item_ids: BTreeMap, - pub current_item: Option, - pub errors: Vec, - pub jellyfin_client: api::JellyfinClient, -} - -#[derive(Clone, Debug)] -pub struct Item { - pub id: SharedString, - pub name: SharedString, - pub item_type: SharedString, - pub media_type: SharedString, -} - -impl Render for AppState { - fn render(&mut self, window: &mut Window, cx: &mut Context) -> impl IntoElement { - div() - .flex() - .flex_col() - .size_full() - .justify_center() - .text_color(rgb(0xffffff)) - .child(Self::header()) - .child(Self::body(self, window, cx)) - .child(Self::footer()) - } -} - -actions!(jello_actions, [OpenItem, OnLoadItem, MouseDownEvent]); - -impl AppState { - fn new(title: impl AsRef, jellyfin_client: api::JellyfinClient) -> Self { - AppState { - title: SharedString::new(title.as_ref()), - items: BTreeMap::new(), - item_ids: BTreeMap::new(), - current_item: None, - errors: Vec::new(), - jellyfin_client, - } - } - - // fn on_mouse_down( - // &mut self, - // event: &MouseDownEvent, - // window: &mut Window, - // cx: &mut Context, - // ) { - // // Handle mouse down event - // } - - fn load_item(id: usize) -> impl Fn(&mut Self, &ClickEvent, &mut Window, &mut Context) { - move |state: &mut Self, event: &ClickEvent, window: &mut Window, cx: &mut Context| { - let item_id = id; - cx.spawn(async move |entity, app| { - tracing::info!("Loading item with id: {}", item_id); - }); - } - } - - fn hover_item(id: usize) -> impl Fn(&mut Self, &bool, &mut Window, &mut Context) { - move |state: &mut Self, item: &bool, window: &mut Window, cx: &mut Context| { - dbg!("Hovering over item: {:?}", id); - } - } - - fn header() -> impl IntoElement { - div() - .flex() - .flex_row() - .w_full() - .justify_end() - .h_20() - .border_10() - .bg(rgb(0x333333)) - .child(Self::button("Refresh")) - } - - fn footer() -> impl IntoElement { - div().flex().flex_row().w_full().h_20().bg(rgb(0x333333)) - } - - fn body(&mut self, window: &mut Window, cx: &mut Context) -> impl IntoElement { - div() - .flex() - .flex_row() - .size_full() - .child(Self::content(self, window, cx)) - .child(Self::sidebar(self, window, cx)) - } - - fn button(label: &str) -> impl IntoElement { - div() - .flex() - .justify_center() - .items_center() - .bg(rgb(0xff00ff)) - .text_color(rgb(0xffffff)) - .border_5() - .rounded_lg() - .child(label.to_string()) - } - - fn content(&mut self, window: &mut Window, cx: &mut Context) -> impl IntoElement { - div() - .debug_below() - .w_3_4() - // .flex() - // .flex_wrap() - .bg(rgb(0x111111)) - .justify_start() - .items_start() - .overflow_hidden() - .child( - div() - .size_full() - .flex() - .flex_wrap() - .justify_start() - .items_start() - .content_start() - .gap_y_10() - .gap_x_10() - .border_t_10() - .p_5() - .child(Self::card(cx, 1)) - .child(Self::card(cx, 2)) - .child(Self::card(cx, 3)) - .child(Self::card(cx, 4)) - .child(Self::card(cx, 5)) - .child(Self::card(cx, 6)) - .child(Self::card(cx, 7)) - .child(Self::card(cx, 8)) - .child(Self::card(cx, 9)), - ) - } - - fn sidebar(&mut self, window: &mut Window, cx: &mut Context) -> impl IntoElement { - div() - .flex() - .flex_col() - .w_1_4() - .min_w_1_6() - .bg(rgb(0x222222)) - .child(div().size_full().bg(gpui::yellow())) - } - - fn card(cx: &mut Context, number: usize) -> impl IntoElement { - div() - .id(number) - .on_click(cx.listener(Self::load_item(number))) - .on_hover(cx.listener(Self::hover_item(number))) - .flex() - .flex_col() - .w_48() - .h_64() - .p_10() - .bg(rgb(0xff00ff)) - .rounded_lg() - } -} - -pub fn ui(jellyfin_client: api::JellyfinClient) { - Application::new().run(|cx: &mut App| { - let bounds = Bounds::centered(None, size(px(500.0), px(500.0)), cx); - cx.open_window( - WindowOptions { - window_bounds: Some(WindowBounds::Windowed(bounds)), - ..Default::default() - }, - |_, cx| cx.new(|_| AppState::new("Jello Media Browser", jellyfin_client)), - ) - .expect("Failed to open window"); - }) -} - -#[derive(Clone, Debug)] -pub struct Card { - pub id: usize, - pub title: SharedString, - pub description: SharedString, - pub image: SharedString, - pub image_blurhash: BlurHash, - pub media_type: SharedString, - pub loading: bool, -} - -impl Render for Card { - fn render(&mut self, _window: &mut Window, _cx: &mut Context) -> impl IntoElement { - div() - .id(self.id) - .flex() - .flex_col() - .w_48() - .h_64() - .p_10() - .bg(rgb(0xff00ff)) - .rounded_lg() - .pipe(|card| { - if self.loading { - card.child(self.image_blurhash.clone()) - } else { - card.child(gpui::img(self.image.clone())) - } - }) - } -} - -#[derive(Clone, Debug)] -pub struct BlurHash { - pub id: ImageId, - pub data: Arc, -} - -impl BlurHash { - pub fn new( - data: impl AsRef, - width: u32, - height: u32, - punch: f32, - ) -> Result> { - use error_stack::ResultExt; - let decoded = - blurhash::decode(data.as_ref(), width, height, punch).change_context(crate::Error)?; - let buffer = image::RgbaImage::from_raw(width, height, decoded) - .ok_or(crate::Error) - .attach("Failed to convert")?; - let frame = image::Frame::new(buffer); - let render_image = RenderImage::new([frame]); - Ok(Self { - id: render_image.id, - data: Arc::from(render_image), - }) - } -} - -impl Render for BlurHash { - fn render(&mut self, _window: &mut Window, _cx: &mut Context) -> impl IntoElement { - gpui::img(ImageSource::Render(self.data.clone())) - } -} - -impl IntoElement for BlurHash { - type Element = gpui::Img; - - fn into_element(self) -> Self::Element { - gpui::img(ImageSource::Render(self.data.clone())) - } -} diff --git a/src/ui/movies.rs b/src/ui/movies.rs deleted file mode 100644 index e69de29..0000000 diff --git a/src/ui/player.rs b/src/ui/player.rs deleted file mode 100644 index e69de29..0000000 diff --git a/src/ui/series.rs b/src/ui/series.rs deleted file mode 100644 index e69de29..0000000 diff --git a/typegen/src/main.rs b/typegen/src/main.rs index 75ad3f5..2519d75 100644 --- a/typegen/src/main.rs +++ b/typegen/src/main.rs @@ -60,14 +60,22 @@ pub struct Property { impl Property { pub fn to_string(&self) -> String { let out = match self._type { - Some(Types::String) => "String".to_string(), + Some(Types::String) => match self.format.as_deref() { + Some("uuid") => "uuid::Uuid".to_string(), + Some("date-time") => "jiff::Zoned".to_string(), + _ => "String".to_string(), + }, Some(Types::Integer) => match self.format.as_deref() { Some("int32") => "i32".to_string(), Some("int64") => "i64".to_string(), _ => "i32".to_string(), }, Some(Types::Boolean) => "bool".to_string(), - Some(Types::Number) => "f64".to_string(), + Some(Types::Number) => match self.format.as_deref() { + Some("double") => "f64".to_string(), + Some("float") => "f32".to_string(), + _ => "f64".to_string(), + }, Some(Types::Array) => { if let Some(ref items) = self.items { format!("Vec<{}>", items.to_string()) @@ -102,6 +110,9 @@ impl Property { out } } + pub fn description(&self) -> Option { + self.description.clone() + } } #[derive(Debug, serde::Serialize, serde::Deserialize, Clone)] @@ -144,6 +155,12 @@ fn main() { .map(|(name, _type)| { let og_name = name.clone(); let name = modify_keyword(&name.to_snake_case()); + let _type_desc = _type.description(); + let _type_desc = if let Some(desc) = &_type_desc { + Some(format!(" {}", desc)) + } else { + None + }; let _type = _type.to_string(); let _type = if _type.contains(key) { _type.replace(&format!("<{}>", key), format!(">", key).as_str()) @@ -151,8 +168,15 @@ fn main() { _type }; syn::Field { - attrs: syn::parse_quote! { - #[serde(rename = #og_name)] + attrs: if let Some(desc) = _type_desc { + syn::parse_quote! { + #[doc = #desc] + #[serde(rename = #og_name)] + } + } else { + syn::parse_quote! { + #[serde(rename = #og_name)] + } }, mutability: syn::FieldMutability::None, vis: syn::Visibility::Public(syn::Token![pub]( @@ -165,13 +189,26 @@ fn main() { }) .collect::>(); let key = modify_keyword(key); + let desc = value.description.clone(); let key = syn::Ident::new(&key.to_pascal_case(), proc_macro2::Span::call_site()); - let tokens = quote::quote! { - #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] - pub struct #key { - #(#fields),* + let tokens = if let Some(desc) = desc { + let desc = format!(" {}", desc); + quote::quote! { + #[doc = #desc] + #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] + pub struct #key { + #(#fields),* + } + } + } else { + quote::quote! { + #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] + pub struct #key { + #(#fields),* + } } }; + syn::parse2(tokens).expect("Failed to parse struct") }) .collect(); @@ -196,11 +233,24 @@ fn main() { .collect::>(); let key = modify_keyword(key); let key = syn::Ident::new(&key.to_pascal_case(), proc_macro2::Span::call_site()); - let tokens = quote::quote! { - #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] - #[serde(rename_all = "PascalCase")] - pub enum #key { - #(#variants),* + let desc = value.description.clone(); + let tokens = if let Some(desc) = desc { + let desc = format!(" {}", desc); + quote::quote! { + #[doc = #desc] + #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] + #[serde(rename_all = "PascalCase")] + pub enum #key { + #(#variants),* + } + } + } else { + quote::quote! { + #[derive(Debug, Clone, serde::Serialize, serde::Deserialize)] + #[serde(rename_all = "PascalCase")] + pub enum #key { + #(#variants),* + } } }; syn::parse2(tokens).expect("Failed to parse enum") diff --git a/ui-gpui/Cargo.toml b/ui-gpui/Cargo.toml index 0a417f6..5d28148 100644 --- a/ui-gpui/Cargo.toml +++ b/ui-gpui/Cargo.toml @@ -4,3 +4,5 @@ version = "0.1.0" edition = "2024" [dependencies] +gpui = { version = "0.2.2", default-features = false, features = ["wayland"] } +tap = "1.0.1" diff --git a/ui-gpui/src/lib.rs b/ui-gpui/src/lib.rs index b93cf3f..777c6cd 100644 --- a/ui-gpui/src/lib.rs +++ b/ui-gpui/src/lib.rs @@ -1,14 +1,262 @@ -pub fn add(left: u64, right: u64) -> u64 { - left + right +use ::tap::*; + +use std::{collections::BTreeMap, sync::Arc}; + +use gpui::{ + App, Application, Bounds, ClickEvent, Context, ImageId, ImageSource, RenderImage, Resource, + SharedString, Window, WindowBounds, WindowOptions, actions, div, prelude::*, px, rgb, size, +}; + +#[derive(Clone, Debug)] +pub struct AppState { + pub title: SharedString, + pub items: BTreeMap, + pub item_ids: BTreeMap, + pub current_item: Option, + pub errors: Vec, + pub jellyfin_client: api::JellyfinClient, } -#[cfg(test)] -mod tests { - use super::*; +#[derive(Clone, Debug)] +pub struct Item { + pub id: SharedString, + pub name: SharedString, + pub item_type: SharedString, + pub media_type: SharedString, +} - #[test] - fn it_works() { - let result = add(2, 2); - assert_eq!(result, 4); +impl Render for AppState { + fn render(&mut self, window: &mut Window, cx: &mut Context) -> impl IntoElement { + div() + .flex() + .flex_col() + .size_full() + .justify_center() + .text_color(rgb(0xffffff)) + .child(Self::header()) + .child(Self::body(self, window, cx)) + .child(Self::footer()) + } +} + +actions!(jello_actions, [OpenItem, OnLoadItem, MouseDownEvent]); + +impl AppState { + fn new(title: impl AsRef, jellyfin_client: api::JellyfinClient) -> Self { + AppState { + title: SharedString::new(title.as_ref()), + items: BTreeMap::new(), + item_ids: BTreeMap::new(), + current_item: None, + errors: Vec::new(), + jellyfin_client, + } + } + + // fn on_mouse_down( + // &mut self, + // event: &MouseDownEvent, + // window: &mut Window, + // cx: &mut Context, + // ) { + // // Handle mouse down event + // } + + fn load_item(id: usize) -> impl Fn(&mut Self, &ClickEvent, &mut Window, &mut Context) { + move |state: &mut Self, event: &ClickEvent, window: &mut Window, cx: &mut Context| { + let item_id = id; + cx.spawn(async move |entity, app| { + tracing::info!("Loading item with id: {}", item_id); + }); + } + } + + fn hover_item(id: usize) -> impl Fn(&mut Self, &bool, &mut Window, &mut Context) { + move |state: &mut Self, item: &bool, window: &mut Window, cx: &mut Context| { + dbg!("Hovering over item: {:?}", id); + } + } + + fn header() -> impl IntoElement { + div() + .flex() + .flex_row() + .w_full() + .justify_end() + .h_20() + .border_10() + .bg(rgb(0x333333)) + .child(Self::button("Refresh")) + } + + fn footer() -> impl IntoElement { + div().flex().flex_row().w_full().h_20().bg(rgb(0x333333)) + } + + fn body(&mut self, window: &mut Window, cx: &mut Context) -> impl IntoElement { + div() + .flex() + .flex_row() + .size_full() + .child(Self::content(self, window, cx)) + .child(Self::sidebar(self, window, cx)) + } + + fn button(label: &str) -> impl IntoElement { + div() + .flex() + .justify_center() + .items_center() + .bg(rgb(0xff00ff)) + .text_color(rgb(0xffffff)) + .border_5() + .rounded_lg() + .child(label.to_string()) + } + + fn content(&mut self, window: &mut Window, cx: &mut Context) -> impl IntoElement { + div() + .debug_below() + .w_3_4() + // .flex() + // .flex_wrap() + .bg(rgb(0x111111)) + .justify_start() + .items_start() + .overflow_hidden() + .child( + div() + .size_full() + .flex() + .flex_wrap() + .justify_start() + .items_start() + .content_start() + .gap_y_10() + .gap_x_10() + .border_t_10() + .p_5() + .child(Self::card(cx, 1)) + .child(Self::card(cx, 2)) + .child(Self::card(cx, 3)) + .child(Self::card(cx, 4)) + .child(Self::card(cx, 5)) + .child(Self::card(cx, 6)) + .child(Self::card(cx, 7)) + .child(Self::card(cx, 8)) + .child(Self::card(cx, 9)), + ) + } + + fn sidebar(&mut self, window: &mut Window, cx: &mut Context) -> impl IntoElement { + div() + .flex() + .flex_col() + .w_1_4() + .min_w_1_6() + .bg(rgb(0x222222)) + .child(div().size_full().bg(gpui::yellow())) + } + + fn card(cx: &mut Context, number: usize) -> impl IntoElement { + div() + .id(number) + .on_click(cx.listener(Self::load_item(number))) + .on_hover(cx.listener(Self::hover_item(number))) + .flex() + .flex_col() + .w_48() + .h_64() + .p_10() + .bg(rgb(0xff00ff)) + .rounded_lg() + } +} + +pub fn ui(jellyfin_client: api::JellyfinClient) { + Application::new().run(|cx: &mut App| { + let bounds = Bounds::centered(None, size(px(500.0), px(500.0)), cx); + cx.open_window( + WindowOptions { + window_bounds: Some(WindowBounds::Windowed(bounds)), + ..Default::default() + }, + |_, cx| cx.new(|_| AppState::new("Jello Media Browser", jellyfin_client)), + ) + .expect("Failed to open window"); + }) +} + +#[derive(Clone, Debug)] +pub struct Card { + pub id: usize, + pub title: SharedString, + pub description: SharedString, + pub image: SharedString, + pub image_blurhash: BlurHash, + pub media_type: SharedString, + pub loading: bool, +} + +impl Render for Card { + fn render(&mut self, _window: &mut Window, _cx: &mut Context) -> impl IntoElement { + div() + .id(self.id) + .flex() + .flex_col() + .w_48() + .h_64() + .p_10() + .bg(rgb(0xff00ff)) + .rounded_lg() + .pipe(|card| { + if self.loading { + card.child(self.image_blurhash.clone()) + } else { + card.child(gpui::img(self.image.clone())) + } + }) + } +} + +#[derive(Clone, Debug)] +pub struct BlurHash { + pub id: ImageId, + pub data: Arc, +} + +impl BlurHash { + pub fn new( + data: impl AsRef, + width: u32, + height: u32, + punch: f32, + ) -> Result> { + use error_stack::ResultExt; + let decoded = + blurhash::decode(data.as_ref(), width, height, punch).change_context(crate::Error)?; + let buffer = image::RgbaImage::from_raw(width, height, decoded) + .ok_or(crate::Error) + .attach("Failed to convert")?; + let frame = image::Frame::new(buffer); + let render_image = RenderImage::new([frame]); + Ok(Self { + id: render_image.id, + data: Arc::from(render_image), + }) + } +} + +impl Render for BlurHash { + fn render(&mut self, _window: &mut Window, _cx: &mut Context) -> impl IntoElement { + gpui::img(ImageSource::Render(self.data.clone())) + } +} + +impl IntoElement for BlurHash { + type Element = gpui::Img; + + fn into_element(self) -> Self::Element { + gpui::img(ImageSource::Render(self.data.clone())) } } diff --git a/ui-iced/Cargo.toml b/ui-iced/Cargo.toml index 4bb9ca3..51aa022 100644 --- a/ui-iced/Cargo.toml +++ b/ui-iced/Cargo.toml @@ -4,4 +4,6 @@ version = "0.1.0" edition = "2024" [dependencies] +gpui_util = "0.2.2" iced = { version = "0.13.1", features = ["canvas", "image", "tokio"] } +uuid = "1.18.1" diff --git a/ui-iced/src/lib.rs b/ui-iced/src/lib.rs index 1704fba..9ff4f06 100644 --- a/ui-iced/src/lib.rs +++ b/ui-iced/src/lib.rs @@ -1,53 +1,33 @@ +use std::{collections::BTreeMap, sync::Arc}; +type SharedString = Arc; + use iced::{Element, Task}; struct State { - screen: Screen, + loading: Option, + current: Screen, + cache: ItemCache, } -enum Screen { - Contacts(Contacts), - Conversation(Conversation), +pub struct ItemCache { + pub items: BTreeMap, } -enum Message { - Contacts(contacts::Message), - Conversation(conversation::Message), +#[derive(Clone, Debug)] +pub struct Item { + pub id: SharedString, + pub name: SharedString, + pub item_type: SharedString, + pub media_type: SharedString, } -fn update(state: &mut State, message: Message) -> Task { - match message { - Message::Contacts(message) => { - if let Screen::Contacts(contacts) = &mut state.screen { - let action = contacts.update(message); - - match action { - contacts::Action::None => Task::none(), - contacts::Action::Run(task) => task.map(Message::Contacts), - contacts::Action::Chat(contact) => { - let (conversation, task) = Conversation::new(contact); - - state.screen = Screen::Conversation(conversation); - - task.map(Message::Conversation) - } - } - } else { - Task::none() - } - } - Message::Conversation(message) => { - if let Screen::Conversation(conversation) = &mut state.screen { - conversation.update(message).map(Message::Conversation) - } else { - Task::none() - } - } - } +pub enum Screen { + Home, + Settings, + Profile, } -fn view(state: &State) -> Element { - match &state.screen { - Screen::Contacts(contacts) => contacts.view().map(Message::Contacts), - Screen::Conversation(conversation) => conversation.view().map(Message::Conversation), - } +pub struct Loading { + to: Screen, + from: Screen, }