1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190
#![doc(html_root_url = "https://docs.rs/db-dump/0.3.0")] #![allow( clippy::cast_lossless, clippy::cast_possible_truncation, clippy::doc_markdown, clippy::missing_errors_doc, clippy::missing_panics_doc, clippy::module_name_repetitions, clippy::must_use_candidate, clippy::needless_lifetimes, clippy::never_loop, clippy::too_many_lines, clippy::unseparated_literal_suffix )] extern crate self as db_dump; mod bool; mod date; mod datetime; mod error; mod index; mod load; pub mod badges; pub mod categories; pub mod crate_owners; pub mod crates; pub mod crates_categories; pub mod crates_keywords; pub mod dependencies; pub mod keywords; pub mod metadata; pub mod reserved_crate_names; pub mod teams; pub mod users; pub mod version_downloads; pub mod versions; pub use crate::error::{Error, Result}; pub use crate::index::Index; pub use crate::load::{load_all, Loader}; /// A crates.io DB dump with *everything* deserialized into memory. Use /// [`Loader`] to load only parts of a dump, which is more efficient. /// /// One of these full dumps can be loaded via [`db_dump::load_all`]. #[derive(Default)] #[non_exhaustive] pub struct DbDump { /// <table style="width:initial"><tr> /// <th>badges.csv</th> /// <td>crate_id</td> /// <td>badge_type</td> /// <td>attributes</td> /// </tr></table> pub badges: Vec<badges::Row>, /// <table style="width:initial"><tr> /// <th>categories.csv</th> /// <td>id</td> /// <td>category</td> /// <td>slug</td> /// <td>description</td> /// <td>crates_cnt</td> /// <td>created_at</td> /// <td>path</td> /// </tr></table> pub categories: Vec<categories::Row>, /// <table style="width:initial"><tr> /// <th>crate_owners.csv</th> /// <td>crate_id</td> /// <td>owner_id</td> /// <td>created_at</td> /// <td>created_by</td> /// <td>owner_kind</td> /// </tr></table> pub crate_owners: Vec<crate_owners::Row>, /// <table style="width:initial"><tr> /// <th>crates.csv</th> /// <td>id</td> /// <td>name</td> /// <td>updated_at</td> /// <td>created_at</td> /// <td>downloads</td> /// <td>description</td> /// <td>homepage</td> /// <td>documentation</td> /// <td>readme</td> /// <td>repository</td> /// <td>max_upload_size</td> /// </tr></table> pub crates: Vec<crates::Row>, /// <table style="width:initial"><tr> /// <th>crates_categories.csv</th> /// <td>crate_id</td> /// <td>category_id</td> /// </tr></table> pub crates_categories: Vec<crates_categories::Row>, /// <table style="width:initial"><tr> /// <th>crates_keywords.csv</th> /// <td>crate_id</td> /// <td>keyword_id</td> /// </tr></table> pub crates_keywords: Vec<crates_keywords::Row>, /// <table style="width:initial"><tr> /// <th>dependencies.csv</th> /// <td>id</td> /// <td>version_id</td> /// <td>crate_id</td> /// <td>req</td> /// <td>optional</td> /// <td>default_features</td> /// <td>features</td> /// <td>target</td> /// <td>kind</td> /// </tr></table> pub dependencies: Vec<dependencies::Row>, /// <table style="width:initial"><tr> /// <th>keywords.csv</th> /// <td>id</td> /// <td>keyword</td> /// <td>crates_cnt</td> /// <td>created_at</td> /// </tr></table> pub keywords: Vec<keywords::Row>, /// <table style="width:initial"><tr> /// <th>metadata.csv</th> /// <td>total_downloads</td> /// </tr></table> pub metadata: metadata::Row, /// <table style="width:initial"><tr> /// <th>reserved_crate_names.csv</th> /// <td>name</td> /// </tr></table> pub reserved_crate_names: Vec<reserved_crate_names::Row>, /// <table style="width:initial"><tr> /// <th>teams.csv</th> /// <td>id</td> /// <td>login</td> /// <td>github_id</td> /// <td>name</td> /// <td>avatar</td> /// <td>org_id</td> /// </tr></table> pub teams: Vec<teams::Row>, /// <table style="width:initial"><tr> /// <th>users.csv</th> /// <td>id</td> /// <td>gh_login</td> /// <td>name</td> /// <td>gh_avatar</td> /// <td>gh_id</td> /// </tr></table> pub users: Vec<users::Row>, /// <table style="width:initial"><tr> /// <th>version_downloads.csv</th> /// <td>version_id</td> /// <td>downloads</td> /// <td>date</td> /// </tr></table> pub version_downloads: Vec<version_downloads::Row>, /// <table style="width:initial"><tr> /// <th>versions.csv</th> /// <td>id</td> /// <td>crate_id</td> /// <td>num</td> /// <td>updated_at</td> /// <td>created_at</td> /// <td>downloads</td> /// <td>features</td> /// <td>yanked</td> /// <td>license</td> /// <td>crate_size</td> /// <td>published_by</td> /// </tr></table> pub versions: Vec<versions::Row>, }