-
When you search for `ssh` you get the following results:
- ssh2 -- Bindings to libssh2 for interacting with SSH servers and executing remote commands, forwarding local ports, etc.
- fleet -- A client …
-
For the `ctest` crate, https://github.com/alexcrichton/ctest/commit/9480ee376ef3b24567ca0b208b7e9b9faa19f82b (hash: 9480ee376ef3b24567ca0b208b7e9b9faa19f82b).
`cargo fmt --all` succeeds but `cargo …
-
It would be super nice to have the ability to add fx plug-ins to audiofiles imported onto the timeline with the possibility of showing krate automations for the effects superimposed on top of the "reg…
-
In this example there is comment which applies to both branches in the `else` block.
```
if entry.end > entry.base {
prev = entry_; // Go to the next entry
} else {
…
-
This stuff should really encourage you to become independant of the android framework and be trivially ready for testing without any mocking non-sense
```kt
interface UserSettings {
var notif…
-
Hello!
Does there exist an XSD schema and/or some other specification for the XML dump generated by the -x option? We are going to read the AST dump generated by ASN1SCC in a Java tool and a specif…
-
```rust
#[doc(inline)]
pub extern crate foo;
```
Could show `foo` as if it was a module.
```rust
extern crate foo;
#[doc(inline)]
pub use foo::*;
```
Could inline the reexported items as…
-
Just started experimenting with Rust, but as soon as I try to use a Module, compilation fails.
Code:
main.rs:
mod person;
fn main() {
let p = person{ name : "Example" };
p.say_hello(…
-
See the discussion here: https://github.com/reem/rust-modifier/issues/7
Blanket implementations can enable some very convenient behavior, but they can also be problematic for some users. A set of sol…
-
This code:
```rust
#![feature(specialization)]
use std::marker::PhantomData;
struct Foo {
marker: PhantomData
}
trait Trait1 {
type Out;
}
impl Trait1 for () {
type Ou…