This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#[macro_use] extern crate serde_derive; | |
extern crate serde_json; | |
use std::borrow::Cow; | |
#[derive(Debug, Deserialize)] | |
struct Foo<'input> { | |
#[serde(borrow)] | |
bar: Cow<'input, str>, | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#[macro_use] extern crate serde_derive; | |
extern crate serde_json; | |
use std::borrow::Cow; | |
#[derive(Debug, Deserialize)] | |
struct Foo<'input> { | |
bar: Cow<'input, str>, | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/// Add this as integration test | |
extern crate rsass; | |
pub fn fuzz_rsass_sass(data: &[u8]) { | |
use rsass::{OutputStyle, compile_scss}; | |
let _ = compile_scss(data, OutputStyle::Compressed); | |
} | |
#[test] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/// just some api ideas | |
#[test] | |
fn config_loading() { | |
let fs = MockFS::new() | |
.file("/usr/local/etc/foo", "fancy = 10") | |
.file("~/.config/foo", "fancy = 20") | |
.file(".env", "LE_PREFIX_FANCY=30"); | |
#[derive(Default, Configure, StructOpt)] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[[package]] | |
name = "alsa-sys" | |
version = "0.1.1" | |
source = "registry+https://github.com/rust-lang/crates.io-index" | |
dependencies = [ | |
"libc 0.2.39 (registry+https://github.com/rust-lang/crates.io-index)", | |
"pkg-config 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", | |
] | |
[[package]] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function fixit --description 'restart a bunch of macOS services that tend to break' | |
sudo killall -KILL appleeventsd | |
sudo killall VDCAssistant | |
sudo killall AppleCameraAssistant | |
sudo killall -HUP mDNSResponder | |
killall Dock | |
killall Spotlight | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[package] | |
name = "steves-csv-thingy" | |
version = "0.1.0" | |
authors = ["Pascal Hertleif <[email protected]>"] | |
[[bin]] | |
name = "quicsv" | |
path = "main.rs" | |
[dependencies] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[[package]] | |
name = "semver" | |
version = "0.9.0" | |
source = "registry+https://github.com/rust-lang/crates.io-index" | |
dependencies = [ | |
"semver-parser 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", | |
] | |
[[package]] | |
name = "semver-parser" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#![feature(slice_patterns)] | |
fn join_with_and(xs: &[&str]) -> String { | |
match xs.split_last() { | |
None => String::new(), | |
Some((last, &[])) => last.to_string(), | |
Some((last, &[first])) => format!("{} and {}", first, last), | |
Some((last, beginning)) => format!("{}, and {}", beginning.join(", "), last), | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use std::collections::HashMap; | |
fn count_words(text: &str) -> HashMap<&str, usize> { | |
text.split(' ').fold( | |
HashMap::new(), | |
|mut map, word| { *map.entry(word).or_insert(0) += 1; map } | |
) | |
} | |
#[test] |