File tree 5 files changed +5
-5
lines changed
5 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
1
//! Simple module to store files in database.
2
2
//!
3
- //! cratesfyi is generating more than 5 million files, they are small and mostly html files.
3
+ //! docs.rs is generating more than 5 million files, they are small and mostly html files.
4
4
//! They are using so many inodes and it is better to store them in database instead of
5
5
//! filesystem. This module is adding files into database and retrieving them.
6
6
Original file line number Diff line number Diff line change 1
- //! Errors used in cratesfyi
1
+ //! Errors used in docs.rs
2
2
3
3
use std:: result:: Result as StdResult ;
4
4
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ const APP_USER_AGENT: &str = concat!(
17
17
include_str!( concat!( env!( "OUT_DIR" ) , "/git_version" ) )
18
18
) ;
19
19
20
- /// Fields we need use in cratesfyi
20
+ /// Fields we need in docs.rs
21
21
#[ derive( Debug ) ]
22
22
struct GitHubFields {
23
23
description : String ,
Original file line number Diff line number Diff line change 1
- //! Various utilities for cratesfyi
1
+ //! Various utilities for docs.rs
2
2
3
3
pub ( crate ) use self :: cargo_metadata:: { CargoMetadata , Package as MetadataPackage } ;
4
4
pub ( crate ) use self :: copy:: copy_doc_dir;
Original file line number Diff line number Diff line change 1
- //! Web interface of cratesfyi
1
+ //! Web interface of docs.rs
2
2
3
3
pub ( crate ) mod page;
4
4
You can’t perform that action at this time.
0 commit comments