-
NB: Part of the [roadmap issue on incremental compilation](https://github.com/rust-lang/rust-roadmap/issues/4).
We should monitor the dep-graph reads/writes for various bad patterns that may lead t…
-
https://github.com/Byron/crates-io-cli-rs
```
brian@ip-10-145-43-250:~/dev/crates-io-cli-rs⟫ git log -1
commit ff374c57064414aaca7d1335d36ab1cb015a8606
Author: Niko Hellwig
Date: Tue Feb 7 1…
brson updated
7 years ago
-
We should investigate whether crates.io has restrictions on the length of crate names, as long names would yield in long file names which would be disallowed on some file systems.
est31 updated
7 years ago
-
fn main() {
let vec_str = vec!["a", "b", "c"];
println!("vec_str: {:?}", vec_str.iter().foo("b").unwrap());
println!("vec_str: {:?} again", vec_str.iter().foo("b").unwrap());
print…
U007D updated
7 years ago
-
Add a lint to suggest converting all instances of:
``` rust
0 as *const T;
0 as *mut T;
```
To:
``` rust
std::ptr::null();
std::ptr::null_mut();
```
See https://github.com/rust-lang/rust/pull/34…
-
In an IR dump by @frankmcsherry, this mangled function name can be spotted:
```
_ZN1074_$u5b$closure$SP$DefId$u20$$u7b$$u20$krate.$u20$17$C$$u20$node.$u20$DefIndex$LP$1064$RP$$u20$$u7d$$u20$0.collect…
eddyb updated
7 years ago
-
System Info:
> Xubuntu 13.10
> rustc 1.0.0-nightly (d3732a12e 2015-02-06 23:30:17 +0000)
> binary: rustc
> commit-hash: d3732a12e896ab98aa27eaffab99a78bbaf837e4
> commit-date: 2015-02-06 23:30:17 +00…
-
I noticed when checking the `syntex-syntax` node that, when I add a private fn into the crate module, it invalidates the krate-0 module. This is because the metadata includes edges to the immediate ch…
-
https://github.com/mrjones/rust-protobuf-json 5dbb6be3e4fed92ede0c5ddc9e5a0560ef27e0f8
```
brian@ip-10-145-43-250:/mnt2/dev⟫ rustc +beta -Vv
rustc 1.16.0-beta.1 (5276ba72e 2017-01-31)
binary: ru…
brson updated
7 years ago
-
Some crates are being listed multiple times on the top-level category pages. For example, ["Development tools"](https://crates.io/categories/development-tools):
![image](https://cloud.githubusercon…