[meta] update src

pull/28/head
Alpha Chen 6 years ago
parent 2ee836a6f2
commit c0834c334b

@ -0,0 +1,93 @@
[[package]]
name = "alphred"
version = "0.1.0"
dependencies = [
"serde 1.0.55 (registry+https://github.com/rust-lang/crates.io-index)",
"serde_derive 1.0.55 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "chunkc"
version = "0.1.0"
dependencies = [
"alphred 0.1.0",
"serde 1.0.55 (registry+https://github.com/rust-lang/crates.io-index)",
"serde_json 1.0.17 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "dtoa"
version = "0.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "itoa"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "proc-macro2"
version = "0.3.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "quote"
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"proc-macro2 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "serde"
version = "1.0.55"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "serde_derive"
version = "1.0.55"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"proc-macro2 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
"quote 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)",
"syn 0.13.10 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "serde_json"
version = "1.0.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"dtoa 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)",
"itoa 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)",
"serde 1.0.55 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "syn"
version = "0.13.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"proc-macro2 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
"quote 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)",
"unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "unicode-xid"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
[metadata]
"checksum dtoa 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "09c3753c3db574d215cba4ea76018483895d7bff25a31b49ba45db21c48e50ab"
"checksum itoa 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)" = "c069bbec61e1ca5a596166e55dfe4773ff745c3d16b700013bcaff9a6df2c682"
"checksum proc-macro2 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)" = "1b06e2f335f48d24442b35a19df506a835fb3547bc3c06ef27340da9acf5cae7"
"checksum quote 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "9949cfe66888ffe1d53e6ec9d9f3b70714083854be20fd5e271b232a017401e8"
"checksum serde 1.0.55 (registry+https://github.com/rust-lang/crates.io-index)" = "97f6a6c3caba0cf8f883b53331791036404ce3c1bd895961cf8bb2f8cecfd84b"
"checksum serde_derive 1.0.55 (registry+https://github.com/rust-lang/crates.io-index)" = "f51b0ef935cf8a41a77bce553da1f8751a739b7ad82dd73669475a22e6ecedb0"
"checksum serde_json 1.0.17 (registry+https://github.com/rust-lang/crates.io-index)" = "f3ad6d546e765177cf3dded3c2e424a8040f870083a0e64064746b958ece9cb1"
"checksum syn 0.13.10 (registry+https://github.com/rust-lang/crates.io-index)" = "77961dcdac942fa8bc033c16f3a790b311c8a27d00811b878ebd8cf9b7ba39d5"
"checksum unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "fc72304796d0818e357ead4e000d19c9c174ab23dc11093ac919054d20a6a7fc"

@ -0,0 +1,9 @@
[package]
name = "chunkc"
version = "0.1.0"
authors = ["Alpha Chen <alpha.chen@gmail.com>"]
[dependencies]
alphred = { path = "/Users/alpha/Dropbox/src/github.com/kejadlen/alphred-rs" }
serde = "1.0"
serde_json = "1.0"

@ -0,0 +1,50 @@
extern crate alphred;
extern crate serde;
#[macro_use]
extern crate serde_json;
use alphred::Item;
fn main() {
let items: Vec<_> = vec![
// Enter fullscreen mode for focused container
"tiling::window --toggle fullscreen",
// Change focus between tiling/floating windows
"tiling::window --toggle float",
// Change layout of desktop
"tiling::desktop --layout bsp",
"tiling::desktop --layout monocle",
// Change focus
"tiling::window --focus west",
"tiling::window --focus south",
"tiling::window --focus north",
"tiling::window --focus east",
"tiling::window --focus prev",
"tiling::window --focus next",
// Swap focused window
"tiling::window --swap west",
"tiling::window --swap south",
"tiling::window --swap north",
"tiling::window --swap east",
// Move focused window
"tiling::window --warp west",
"tiling::window --warp south",
"tiling::window --warp north",
"tiling::window --warp east",
"tiling::desktop --rotate 90",
// Equalize window size
"tiling::desktop --equalize",
// float next window to be tiled
"set window_float_next 1",
].iter()
.map(|&x| {
let m: String = x.split(|x: char| !x.is_alphanumeric())
.collect::<Vec<_>>()
.join(" ");
Item::new(format!("chunkc {}", x)).arg(x).match_(&m)
})
.collect();
let json = json!({ "items": items });
println!("{}", json);
}

@ -0,0 +1 @@
{"rustc_fingerprint":10874986543428927441,"outputs":{"3144802570395919623":["___\nlib___.rlib\nlib___.dylib\nlib___.dylib\nlib___.a\nlib___.dylib\n/Users/alpha/.rustup/toolchains/nightly-x86_64-apple-darwin\ndebug_assertions\nproc_macro\ntarget_arch=\"x86_64\"\ntarget_endian=\"little\"\ntarget_env=\"\"\ntarget_family=\"unix\"\ntarget_feature=\"fxsr\"\ntarget_feature=\"mmx\"\ntarget_feature=\"sse\"\ntarget_feature=\"sse2\"\ntarget_feature=\"sse3\"\ntarget_feature=\"ssse3\"\ntarget_has_atomic=\"128\"\ntarget_has_atomic=\"16\"\ntarget_has_atomic=\"32\"\ntarget_has_atomic=\"64\"\ntarget_has_atomic=\"8\"\ntarget_has_atomic=\"ptr\"\ntarget_os=\"macos\"\ntarget_pointer_width=\"64\"\ntarget_thread_local\ntarget_vendor=\"apple\"\nunix\n",""],"1164083562126845933":["rustc 1.27.0-nightly (79252ff4e 2018-04-29)\nbinary: rustc\ncommit-hash: 79252ff4e25d82f9fe856cb66f127b79cdace163\ncommit-date: 2018-04-29\nhost: x86_64-apple-darwin\nrelease: 1.27.0-nightly\nLLVM version: 6.0\n",""],"1617349019360157463":["___\nlib___.rlib\nlib___.dylib\nlib___.dylib\nlib___.a\nlib___.dylib\n/Users/alpha/.rustup/toolchains/nightly-x86_64-apple-darwin\ndebug_assertions\nproc_macro\ntarget_arch=\"x86_64\"\ntarget_endian=\"little\"\ntarget_env=\"\"\ntarget_family=\"unix\"\ntarget_feature=\"fxsr\"\ntarget_feature=\"mmx\"\ntarget_feature=\"sse\"\ntarget_feature=\"sse2\"\ntarget_feature=\"sse3\"\ntarget_feature=\"ssse3\"\ntarget_has_atomic=\"128\"\ntarget_has_atomic=\"16\"\ntarget_has_atomic=\"32\"\ntarget_has_atomic=\"64\"\ntarget_has_atomic=\"8\"\ntarget_has_atomic=\"ptr\"\ntarget_os=\"macos\"\ntarget_pointer_width=\"64\"\ntarget_thread_local\ntarget_vendor=\"apple\"\nunix\n",""]}}

@ -0,0 +1 @@
{"rustc":17262027674367754310,"features":"[]","target":16575322443548573982,"profile":2479238963835404001,"path":15723967775782066621,"deps":[["serde v1.0.55",10096868614232587494],["serde_derive v1.0.55",2575966966264615377]],"local":[{"Precalculated":"0.1.0"}],"rustflags":[],"edition":"Edition2015"}

@ -0,0 +1 @@
{"rustc":17262027674367754310,"features":"[]","target":16575322443548573982,"profile":3425985238348398695,"path":10008523446406352484,"deps":[["serde v1.0.55",10096868614232587494],["serde_derive v1.0.55",2575966966264615377]],"local":[{"MtimeBased":[[1526852904,0],".fingerprint/alphred-f8f2619cfb01d6a5/dep-lib-alphred-f8f2619cfb01d6a5"]}],"rustflags":[],"edition":"Edition2015"}

@ -0,0 +1 @@
{"rustc":17262027674367754310,"features":"[]","target":5435998752734314604,"profile":3425985238348398695,"path":1036222786711178230,"deps":[["alphred v0.1.0",10340871277401111602],["serde v1.0.55",10096868614232587494],["serde_json v1.0.17",2161531250048431802]],"local":[{"MtimeBased":[[1526852031,0],".fingerprint/chunkc-24e97c32df2dc094/dep-bin-chunkc-24e97c32df2dc094"]}],"rustflags":[],"edition":"Edition2015"}

@ -0,0 +1 @@
{"rustc":17262027674367754310,"features":"[]","target":5435998752734314604,"profile":3425985238348398695,"path":1036222786711178230,"deps":[["alphred v0.1.0",10340871277401111602]],"local":[{"MtimeBased":[[1526352086,0],".fingerprint/chunkc-588db1344a541c8a/dep-bin-chunkc-588db1344a541c8a"]}],"rustflags":[],"edition":"Edition2015"}

@ -0,0 +1 @@
{"rustc":17262027674367754310,"features":"[]","target":5435998752734314604,"profile":3425985238348398695,"path":1036222786711178230,"deps":[["alphred v0.1.0 (file:///Users/alpha/Dropbox/src/github.com/kejadlen/alphred-rs)",11250808400792784482],["serde v1.0.55",10096868614232587494],["serde_json v1.0.17",2161531250048431802]],"local":[{"MtimeBased":[[1526852905,0],".fingerprint/chunkc-65add33d9fc967f2/dep-bin-chunkc-65add33d9fc967f2"]}],"rustflags":[],"edition":"Edition2015"}

@ -0,0 +1 @@
{"rustc":17262027674367754310,"features":"[]","target":5435998752734314604,"profile":3425985238348398695,"path":1036222786711178230,"deps":[],"local":[{"MtimeBased":[[1526351947,0],".fingerprint/chunkc-b7d1f51dc13d7620/dep-bin-chunkc-b7d1f51dc13d7620"]}],"rustflags":[],"edition":"Edition2015"}

@ -0,0 +1 @@
{"rustc":17262027674367754310,"features":"[]","target":16274315558562808588,"profile":2479238963835404001,"path":7786187295181828852,"deps":[],"local":[{"Precalculated":"0.4.2"}],"rustflags":[],"edition":"Edition2015"}

@ -0,0 +1 @@
{"rustc":17262027674367754310,"features":"[\"default\", \"std\"]","target":12538226628133139305,"profile":2479238963835404001,"path":15850188564049262573,"deps":[],"local":[{"Precalculated":"0.4.1"}],"rustflags":[],"edition":"Edition2015"}

@ -0,0 +1 @@
{"rustc":17262027674367754310,"features":"[\"default\", \"proc-macro\"]","target":11191649050042990299,"profile":2479238963835404001,"path":5323637611377973718,"deps":[["unicode-xid v0.1.0",10877187922749757742]],"local":[{"Precalculated":"0.3.8"}],"rustflags":[],"edition":"Edition2015"}

@ -0,0 +1 @@
{"rustc":17262027674367754310,"features":"[\"default\", \"proc-macro\", \"proc-macro2\"]","target":9483782203168481353,"profile":2479238963835404001,"path":6819969593180163088,"deps":[["proc-macro2 v0.3.8",10375761165508297510]],"local":[{"Precalculated":"0.5.2"}],"rustflags":[],"edition":"Edition2015"}

@ -0,0 +1 @@
{"rustc":17262027674367754310,"features":"[\"default\", \"std\"]","target":16707711045546007680,"profile":2479238963835404001,"path":3240142411356623875,"deps":[],"local":[{"Precalculated":"1.0.55"}],"rustflags":[],"edition":"Edition2015"}

@ -0,0 +1 @@
{"rustc":17262027674367754310,"features":"[\"default\"]","target":15351114125613197689,"profile":2479238963835404001,"path":8619742255085100834,"deps":[["proc-macro2 v0.3.8",10375761165508297510],["quote v0.5.2",11928506859043985200],["syn v0.13.10",4398115247496487617]],"local":[{"Precalculated":"1.0.55"}],"rustflags":[],"edition":"Edition2015"}

@ -0,0 +1 @@
{"rustc":17262027674367754310,"features":"[\"default\"]","target":1322984723252129289,"profile":2479238963835404001,"path":7611922909051024386,"deps":[["dtoa v0.4.2",9546411716078159250],["itoa v0.4.1",2366499566036075177],["serde v1.0.55",10096868614232587494]],"local":[{"Precalculated":"1.0.17"}],"rustflags":[],"edition":"Edition2015"}

@ -0,0 +1 @@
{"rustc":17262027674367754310,"features":"[\"clone-impls\", \"default\", \"derive\", \"parsing\", \"printing\", \"proc-macro\", \"proc-macro2\", \"quote\", \"visit\"]","target":2157248160970720175,"profile":2479238963835404001,"path":10840690585019378050,"deps":[["proc-macro2 v0.3.8",10375761165508297510],["quote v0.5.2",11928506859043985200],["unicode-xid v0.1.0",10877187922749757742]],"local":[{"Precalculated":"0.13.10"}],"rustflags":[],"edition":"Edition2015"}

@ -0,0 +1 @@
{"rustc":17262027674367754310,"features":"[\"default\"]","target":18309882125015987303,"profile":2479238963835404001,"path":2429228222980752560,"deps":[],"local":[{"Precalculated":"0.1.0"}],"rustflags":[],"edition":"Edition2015"}

@ -0,0 +1 @@
/Users/alpha/Dropbox/dotfiles/src/chunkc.alfredworkflow/target/debug/chunkc.dSYM: /Users/alpha/Dropbox/dotfiles/src/chunkc.alfredworkflow/src/main.rs /Users/alpha/Dropbox/src/github.com/kejadlen/alphred-rs/src/lib.rs

@ -0,0 +1 @@
deps/chunkc-65add33d9fc967f2.dSYM

@ -0,0 +1,5 @@
/Users/alpha/Dropbox/dotfiles/src/chunkc.alfredworkflow/target/debug/deps/libalphred-d82fe96927b1433d.rlib: /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/alphred-0.1.0/src/lib.rs
/Users/alpha/Dropbox/dotfiles/src/chunkc.alfredworkflow/target/debug/deps/alphred-d82fe96927b1433d.d: /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/alphred-0.1.0/src/lib.rs
/Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/alphred-0.1.0/src/lib.rs:

@ -0,0 +1,5 @@
/Users/alpha/Dropbox/dotfiles/src/chunkc.alfredworkflow/target/debug/deps/libalphred-f8f2619cfb01d6a5.rlib: /Users/alpha/Dropbox/src/github.com/kejadlen/alphred-rs/src/lib.rs
/Users/alpha/Dropbox/dotfiles/src/chunkc.alfredworkflow/target/debug/deps/alphred-f8f2619cfb01d6a5.d: /Users/alpha/Dropbox/src/github.com/kejadlen/alphred-rs/src/lib.rs
/Users/alpha/Dropbox/src/github.com/kejadlen/alphred-rs/src/lib.rs:

@ -0,0 +1,5 @@
/Users/alpha/Dropbox/dotfiles/src/chunkc.alfredworkflow/target/debug/deps/chunkc-24e97c32df2dc094: src/main.rs
/Users/alpha/Dropbox/dotfiles/src/chunkc.alfredworkflow/target/debug/deps/chunkc-24e97c32df2dc094.d: src/main.rs
src/main.rs:

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>CFBundleIdentifier</key>
<string>com.apple.xcode.dsym.chunkc-24e97c32df2dc094</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundlePackageType</key>
<string>dSYM</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleVersion</key>
<string>1</string>
</dict>
</plist>

@ -0,0 +1,5 @@
/Users/alpha/Dropbox/dotfiles/src/chunkc.alfredworkflow/target/debug/deps/chunkc-588db1344a541c8a: src/main.rs
/Users/alpha/Dropbox/dotfiles/src/chunkc.alfredworkflow/target/debug/deps/chunkc-588db1344a541c8a.d: src/main.rs
src/main.rs:

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>CFBundleIdentifier</key>
<string>com.apple.xcode.dsym.chunkc-588db1344a541c8a</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundlePackageType</key>
<string>dSYM</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleVersion</key>
<string>1</string>
</dict>
</plist>

@ -0,0 +1,5 @@
/Users/alpha/Dropbox/dotfiles/src/chunkc.alfredworkflow/target/debug/deps/chunkc-65add33d9fc967f2: src/main.rs
/Users/alpha/Dropbox/dotfiles/src/chunkc.alfredworkflow/target/debug/deps/chunkc-65add33d9fc967f2.d: src/main.rs
src/main.rs:

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>CFBundleIdentifier</key>
<string>com.apple.xcode.dsym.chunkc-65add33d9fc967f2</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundlePackageType</key>
<string>dSYM</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleVersion</key>
<string>1</string>
</dict>
</plist>

@ -0,0 +1,5 @@
/Users/alpha/Dropbox/dotfiles/src/chunkc.alfredworkflow/target/debug/deps/chunkc-b7d1f51dc13d7620: src/main.rs
/Users/alpha/Dropbox/dotfiles/src/chunkc.alfredworkflow/target/debug/deps/chunkc-b7d1f51dc13d7620.d: src/main.rs
src/main.rs:

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>CFBundleIdentifier</key>
<string>com.apple.xcode.dsym.chunkc-b7d1f51dc13d7620</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundlePackageType</key>
<string>dSYM</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleVersion</key>
<string>1</string>
</dict>
</plist>

@ -0,0 +1,7 @@
/Users/alpha/Dropbox/dotfiles/src/chunkc.alfredworkflow/target/debug/deps/libdtoa-b97aa81d004270ba.rlib: /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/dtoa-0.4.2/src/lib.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/dtoa-0.4.2/src/diyfp.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/dtoa-0.4.2/src/dtoa.rs
/Users/alpha/Dropbox/dotfiles/src/chunkc.alfredworkflow/target/debug/deps/dtoa-b97aa81d004270ba.d: /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/dtoa-0.4.2/src/lib.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/dtoa-0.4.2/src/diyfp.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/dtoa-0.4.2/src/dtoa.rs
/Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/dtoa-0.4.2/src/lib.rs:
/Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/dtoa-0.4.2/src/diyfp.rs:
/Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/dtoa-0.4.2/src/dtoa.rs:

@ -0,0 +1,5 @@
/Users/alpha/Dropbox/dotfiles/src/chunkc.alfredworkflow/target/debug/deps/libitoa-76c18edd3778c0d6.rlib: /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/itoa-0.4.1/src/lib.rs
/Users/alpha/Dropbox/dotfiles/src/chunkc.alfredworkflow/target/debug/deps/itoa-76c18edd3778c0d6.d: /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/itoa-0.4.1/src/lib.rs
/Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/itoa-0.4.1/src/lib.rs:

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>CFBundleIdentifier</key>
<string>com.apple.xcode.dsym.libserde_derive-cc8f68ae9cd724e3.dylib</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundlePackageType</key>
<string>dSYM</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleVersion</key>
<string>1</string>
</dict>
</plist>

@ -0,0 +1,7 @@
/Users/alpha/Dropbox/dotfiles/src/chunkc.alfredworkflow/target/debug/deps/libproc_macro2-a8c7ffde39377737.rlib: /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.3.8/src/lib.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.3.8/src/strnom.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.3.8/src/stable.rs
/Users/alpha/Dropbox/dotfiles/src/chunkc.alfredworkflow/target/debug/deps/proc_macro2-a8c7ffde39377737.d: /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.3.8/src/lib.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.3.8/src/strnom.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.3.8/src/stable.rs
/Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.3.8/src/lib.rs:
/Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.3.8/src/strnom.rs:
/Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.3.8/src/stable.rs:

@ -0,0 +1,7 @@
/Users/alpha/Dropbox/dotfiles/src/chunkc.alfredworkflow/target/debug/deps/libquote-b8b7ede49c5ce1e1.rlib: /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-0.5.2/src/lib.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-0.5.2/src/tokens.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-0.5.2/src/to_tokens.rs
/Users/alpha/Dropbox/dotfiles/src/chunkc.alfredworkflow/target/debug/deps/quote-b8b7ede49c5ce1e1.d: /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-0.5.2/src/lib.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-0.5.2/src/tokens.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-0.5.2/src/to_tokens.rs
/Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-0.5.2/src/lib.rs:
/Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-0.5.2/src/tokens.rs:
/Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-0.5.2/src/to_tokens.rs:

@ -0,0 +1,20 @@
/Users/alpha/Dropbox/dotfiles/src/chunkc.alfredworkflow/target/debug/deps/libserde-f94404cdbaa510d3.rlib: /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.55/src/lib.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.55/src/macros.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.55/src/de/mod.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.55/src/de/value.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.55/src/de/from_primitive.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.55/src/de/ignored_any.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.55/src/de/impls.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.55/src/de/utf8.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.55/src/ser/mod.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.55/src/ser/impls.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.55/src/ser/impossible.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.55/src/export.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.55/src/private/mod.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.55/src/private/macros.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.55/src/private/de.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.55/src/private/ser.rs
/Users/alpha/Dropbox/dotfiles/src/chunkc.alfredworkflow/target/debug/deps/serde-f94404cdbaa510d3.d: /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.55/src/lib.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.55/src/macros.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.55/src/de/mod.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.55/src/de/value.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.55/src/de/from_primitive.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.55/src/de/ignored_any.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.55/src/de/impls.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.55/src/de/utf8.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.55/src/ser/mod.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.55/src/ser/impls.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.55/src/ser/impossible.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.55/src/export.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.55/src/private/mod.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.55/src/private/macros.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.55/src/private/de.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.55/src/private/ser.rs
/Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.55/src/lib.rs:
/Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.55/src/macros.rs:
/Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.55/src/de/mod.rs:
/Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.55/src/de/value.rs:
/Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.55/src/de/from_primitive.rs:
/Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.55/src/de/ignored_any.rs:
/Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.55/src/de/impls.rs:
/Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.55/src/de/utf8.rs:
/Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.55/src/ser/mod.rs:
/Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.55/src/ser/impls.rs:
/Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.55/src/ser/impossible.rs:
/Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.55/src/export.rs:
/Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.55/src/private/mod.rs:
/Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.55/src/private/macros.rs:
/Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.55/src/private/de.rs:
/Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.55/src/private/ser.rs:

@ -0,0 +1,17 @@
/Users/alpha/Dropbox/dotfiles/src/chunkc.alfredworkflow/target/debug/deps/libserde_derive-cc8f68ae9cd724e3.dylib: /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.55/src/lib.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.55/src/internals/mod.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.55/src/internals/ast.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.55/src/internals/attr.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.55/src/internals/ctxt.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.55/src/internals/case.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.55/src/internals/check.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.55/src/bound.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.55/src/fragment.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.55/src/de.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.55/src/pretend.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.55/src/ser.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.55/src/try.rs
/Users/alpha/Dropbox/dotfiles/src/chunkc.alfredworkflow/target/debug/deps/serde_derive-cc8f68ae9cd724e3.d: /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.55/src/lib.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.55/src/internals/mod.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.55/src/internals/ast.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.55/src/internals/attr.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.55/src/internals/ctxt.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.55/src/internals/case.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.55/src/internals/check.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.55/src/bound.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.55/src/fragment.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.55/src/de.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.55/src/pretend.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.55/src/ser.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.55/src/try.rs
/Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.55/src/lib.rs:
/Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.55/src/internals/mod.rs:
/Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.55/src/internals/ast.rs:
/Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.55/src/internals/attr.rs:
/Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.55/src/internals/ctxt.rs:
/Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.55/src/internals/case.rs:
/Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.55/src/internals/check.rs:
/Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.55/src/bound.rs:
/Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.55/src/fragment.rs:
/Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.55/src/de.rs:
/Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.55/src/pretend.rs:
/Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.55/src/ser.rs:
/Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.55/src/try.rs:

@ -0,0 +1,19 @@
/Users/alpha/Dropbox/dotfiles/src/chunkc.alfredworkflow/target/debug/deps/libserde_json-41060df7d2c100db.rlib: /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.17/src/lib.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.17/src/macros.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.17/src/de.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.17/src/error.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.17/src/map.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.17/src/ser.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.17/src/value/mod.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.17/src/value/de.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.17/src/value/from.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.17/src/value/index.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.17/src/value/partial_eq.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.17/src/value/ser.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.17/src/iter.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.17/src/number.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.17/src/read.rs
/Users/alpha/Dropbox/dotfiles/src/chunkc.alfredworkflow/target/debug/deps/serde_json-41060df7d2c100db.d: /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.17/src/lib.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.17/src/macros.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.17/src/de.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.17/src/error.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.17/src/map.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.17/src/ser.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.17/src/value/mod.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.17/src/value/de.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.17/src/value/from.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.17/src/value/index.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.17/src/value/partial_eq.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.17/src/value/ser.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.17/src/iter.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.17/src/number.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.17/src/read.rs
/Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.17/src/lib.rs:
/Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.17/src/macros.rs:
/Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.17/src/de.rs:
/Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.17/src/error.rs:
/Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.17/src/map.rs:
/Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.17/src/ser.rs:
/Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.17/src/value/mod.rs:
/Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.17/src/value/de.rs:
/Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.17/src/value/from.rs:
/Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.17/src/value/index.rs:
/Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.17/src/value/partial_eq.rs:
/Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.17/src/value/ser.rs:
/Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.17/src/iter.rs:
/Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.17/src/number.rs:
/Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.17/src/read.rs:

@ -0,0 +1,29 @@
/Users/alpha/Dropbox/dotfiles/src/chunkc.alfredworkflow/target/debug/deps/libsyn-f3a5ffdb72d5b815.rlib: /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.13.10/src/lib.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.13.10/src/parsers.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.13.10/src/macros.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.13.10/src/token.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.13.10/src/attr.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.13.10/src/data.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.13.10/src/expr.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.13.10/src/generics.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.13.10/src/ident.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.13.10/src/lifetime.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.13.10/src/lit.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.13.10/src/mac.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.13.10/src/derive.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.13.10/src/op.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.13.10/src/ty.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.13.10/src/path.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.13.10/src/buffer.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.13.10/src/punctuated.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.13.10/src/synom.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.13.10/src/tt.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.13.10/src/parse_quote.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.13.10/src/spanned.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.13.10/src/gen/visit.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.13.10/src/gen/../gen_helper.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.13.10/src/error.rs
/Users/alpha/Dropbox/dotfiles/src/chunkc.alfredworkflow/target/debug/deps/syn-f3a5ffdb72d5b815.d: /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.13.10/src/lib.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.13.10/src/parsers.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.13.10/src/macros.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.13.10/src/token.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.13.10/src/attr.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.13.10/src/data.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.13.10/src/expr.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.13.10/src/generics.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.13.10/src/ident.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.13.10/src/lifetime.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.13.10/src/lit.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.13.10/src/mac.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.13.10/src/derive.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.13.10/src/op.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.13.10/src/ty.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.13.10/src/path.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.13.10/src/buffer.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.13.10/src/punctuated.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.13.10/src/synom.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.13.10/src/tt.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.13.10/src/parse_quote.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.13.10/src/spanned.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.13.10/src/gen/visit.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.13.10/src/gen/../gen_helper.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.13.10/src/error.rs
/Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.13.10/src/lib.rs:
/Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.13.10/src/parsers.rs:
/Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.13.10/src/macros.rs:
/Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.13.10/src/token.rs:
/Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.13.10/src/attr.rs:
/Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.13.10/src/data.rs:
/Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.13.10/src/expr.rs:
/Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.13.10/src/generics.rs:
/Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.13.10/src/ident.rs:
/Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.13.10/src/lifetime.rs:
/Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.13.10/src/lit.rs:
/Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.13.10/src/mac.rs:
/Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.13.10/src/derive.rs:
/Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.13.10/src/op.rs:
/Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.13.10/src/ty.rs:
/Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.13.10/src/path.rs:
/Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.13.10/src/buffer.rs:
/Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.13.10/src/punctuated.rs:
/Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.13.10/src/synom.rs:
/Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.13.10/src/tt.rs:
/Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.13.10/src/parse_quote.rs:
/Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.13.10/src/spanned.rs:
/Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.13.10/src/gen/visit.rs:
/Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.13.10/src/gen/../gen_helper.rs:
/Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.13.10/src/error.rs:

@ -0,0 +1,6 @@
/Users/alpha/Dropbox/dotfiles/src/chunkc.alfredworkflow/target/debug/deps/libunicode_xid-cc90773582a65f62.rlib: /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-xid-0.1.0/src/lib.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-xid-0.1.0/src/tables.rs
/Users/alpha/Dropbox/dotfiles/src/chunkc.alfredworkflow/target/debug/deps/unicode_xid-cc90773582a65f62.d: /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-xid-0.1.0/src/lib.rs /Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-xid-0.1.0/src/tables.rs
/Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-xid-0.1.0/src/lib.rs:
/Users/alpha/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-xid-0.1.0/src/tables.rs:

Some files were not shown because too many files have changed in this diff Show More

Loading…
Cancel
Save