NEW: various additions

This commit is contained in:
xpk 2023-04-21 13:01:56 +08:00
parent 020fc42895
commit 83ed100299
Signed by: xpk
GPG Key ID: CD4FF6793F09AB86
204 changed files with 479 additions and 10 deletions

2
nodejs/dnslookup.js Normal file
View File

@ -0,0 +1,2 @@
const dns = require('dns');
dns.lookup('blog.headdesk.me', (err,address,family) => console.log('results: %s', address));

View File

@ -0,0 +1,26 @@
import json
import boto3
import base64
def lambda_handler(event, context):
# layer1
l1client = boto3.client('sts')
assumed_role_object=l1client.assume_role(
RoleArn="arn:aws:iam::111122223333:role/Role1",
RoleSessionName="lambda-assumeRoleL1"
)
# layer2
l2client = boto3.client(
'sts',
aws_access_key_id=assumed_role_object['Credentials']['AccessKeyId'],
aws_secret_access_key=assumed_role_object['Credentials']['SecretAccessKey'],
aws_session_token="lambda-assumeRoleMs")
l2_assumed_role_object=l2client.assume_role(
RoleArn="arn:aws:iam::111122223333:role/Role2",
RoleSessionName="lambda-assumeRoleL2"
)
print("export AWS_ACCESS_KEY_ID=" + l2_assumed_role_object['Credentials']['AccessKeyId'])
print("export AWS_SECRET_ACCESS_KEY=" + l2_assumed_role_object['Credentials']['SecretAccessKey'])
print("export AWS_SESSION_TOKEN=" + l2_assumed_role_object['Credentials']['SessionToken'])
print("export AWS_DEFAULT_REGION=ap-east-1")

15
py/dns-lookup-dnspython.py Executable file
View File

@ -0,0 +1,15 @@
#!/usr/bin/python3
import dns.resolver
import dns.query
res = dns.resolver.Resolver()
res.timeout = 10
res.lifetime = 25
res.nameservers = ['192.168.86.50']
#results = res.query('blog.headdesk.me', 'A', tcp=True)
results = res.resolve('blog.headdesk.me', 'A', tcp=True)
print('Result:')
for line in results:
print(line.to_text())

View File

@ -1,10 +0,0 @@
#!/usr/bin/python3
import urllib3
from urllib3 import Timeout
urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning)
http = urllib3.PoolManager(cert_reqs='CERT_NONE')
url = "https://blog.headdesk.me"
r = http.request('GET', url, timeout=Timeout(10))
print("statusCode: %s" % r.status)

6
ruby/dnslookup.rb Normal file
View File

@ -0,0 +1,6 @@
#!/usr/bin/env ruby
require 'resolv'
require 'ipaddr'
dns = Resolv::DNS.new.getresources("blog.headdesk.me", Resolv::DNS::Resource::IN::A)
p dns

BIN
rust/HelloWorld Executable file

Binary file not shown.

6
rust/HelloWorld.rs Normal file
View File

@ -0,0 +1,6 @@
fn main() {
// Statements here are executed when the compiled binary is called
// Print text to the console
println!("Hello World!");
}

75
rust/password_gen/Cargo.lock generated Normal file
View File

@ -0,0 +1,75 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
[[package]]
name = "getrandom"
version = "0.2.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31"
dependencies = [
"cfg-if",
"libc",
"wasi",
]
[[package]]
name = "libc"
version = "0.2.139"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "201de327520df007757c1f0adce6e827fe8562fbc28bfd9c15571c66ca1f5f79"
[[package]]
name = "password_gen"
version = "0.1.0"
dependencies = [
"rand",
]
[[package]]
name = "ppv-lite86"
version = "0.2.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
[[package]]
name = "rand"
version = "0.8.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
dependencies = [
"libc",
"rand_chacha",
"rand_core",
]
[[package]]
name = "rand_chacha"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
dependencies = [
"ppv-lite86",
"rand_core",
]
[[package]]
name = "rand_core"
version = "0.6.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
dependencies = [
"getrandom",
]
[[package]]
name = "wasi"
version = "0.11.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"

View File

@ -0,0 +1,9 @@
[package]
name = "password_gen"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
rand = "~0.8"

View File

@ -0,0 +1,18 @@
fn main() {
use rand::Rng;
const CHARSET: &[u8] = b"ABCDEFGHJKLMNPQRSTUVWXYZ\
abcdefghijkmnpqrstuvwxyz\
0123456789)(*&^%$#@!~ ";
const PASSWORD_LEN: usize = 20;
let mut rng = rand::thread_rng();
let password: String = (0..PASSWORD_LEN)
.map(|_| {
let idx = rng.gen_range(0..CHARSET.len());
CHARSET[idx] as char
})
.collect();
// println!("{:?}", password);
println!("{}", password);
}

View File

@ -0,0 +1 @@
{"rustc_fingerprint":15650264045518534452,"outputs":{"2797684049618456168":{"success":false,"status":"exit status: 1","code":1,"stdout":"","stderr":"error: `-Csplit-debuginfo` is unstable on this platform\n\n"},"931469667778813386":{"success":true,"status":"","code":0,"stdout":"___\nlib___.rlib\nlib___.so\nlib___.so\nlib___.a\nlib___.so\n/usr\ndebug_assertions\npanic=\"unwind\"\nproc_macro\ntarget_arch=\"x86_64\"\ntarget_endian=\"little\"\ntarget_env=\"gnu\"\ntarget_family=\"unix\"\ntarget_feature=\"fxsr\"\ntarget_feature=\"sse\"\ntarget_feature=\"sse2\"\ntarget_has_atomic=\"16\"\ntarget_has_atomic=\"32\"\ntarget_has_atomic=\"64\"\ntarget_has_atomic=\"8\"\ntarget_has_atomic=\"ptr\"\ntarget_os=\"linux\"\ntarget_pointer_width=\"64\"\ntarget_vendor=\"unknown\"\nunix\n","stderr":""},"17598535894874457435":{"success":true,"status":"","code":0,"stdout":"rustc 1.61.0\nbinary: rustc\ncommit-hash: unknown\ncommit-date: unknown\nhost: x86_64-unknown-linux-gnu\nrelease: 1.61.0\nLLVM version: 14.0.0\n","stderr":""}},"successes":{}}

View File

@ -0,0 +1,3 @@
Signature: 8a477f597d28d172789f06886806bc55
# This file is a cache directory tag created by cargo.
# For information about cache directory tags see https://bford.info/cachedir/

View File

@ -0,0 +1 @@
This file has an mtime of when this was started.

View File

@ -0,0 +1 @@
383c1d007ecdb16b

View File

@ -0,0 +1 @@
{"rustc":15498924570219959682,"features":"[]","target":10094334937643343087,"profile":12637318739757120569,"path":13488949911505607012,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/cfg-if-42918be7e08a4fb9/dep-lib-cfg-if"}}],"rustflags":[],"metadata":8462187951337715540,"config":2202906307356721367,"compile_kind":0}

View File

@ -0,0 +1 @@
This file has an mtime of when this was started.

View File

@ -0,0 +1 @@
dea4078917f8c950

View File

@ -0,0 +1 @@
{"rustc":15498924570219959682,"features":"[\"std\"]","target":13546511942750895132,"profile":12637318739757120569,"path":11801743164327112871,"deps":[[2452538001284770427,"cfg_if",false,7760209573987564600],[10042388369396437804,"libc",false,9244254133112470176]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/getrandom-c0def49cc27083e1/dep-lib-getrandom"}}],"rustflags":[],"metadata":12606519392706294666,"config":2202906307356721367,"compile_kind":0}

View File

@ -0,0 +1 @@
{"rustc":15498924570219959682,"features":"[]","target":2709041430195671023,"profile":12637318739757120569,"path":8572524676313124991,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/libc-4245541bb9212cf6/dep-build-script-build-script-build"}}],"rustflags":[],"metadata":14998826085014762512,"config":2202906307356721367,"compile_kind":0}

View File

@ -0,0 +1 @@
This file has an mtime of when this was started.

View File

@ -0,0 +1 @@
This file has an mtime of when this was started.

View File

@ -0,0 +1 @@
a0fa9ae927304a80

View File

@ -0,0 +1 @@
{"rustc":15498924570219959682,"features":"[]","target":15721753382687865320,"profile":12637318739757120569,"path":16472550346162783618,"deps":[[10042388369396437804,"build_script_build",false,14896580887442260300]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/libc-5dcd8098fb66e3ba/dep-lib-libc"}}],"rustflags":[],"metadata":14998826085014762512,"config":2202906307356721367,"compile_kind":0}

View File

@ -0,0 +1 @@
{"rustc":15498924570219959682,"features":"","target":0,"profile":0,"path":0,"deps":[[10042388369396437804,"build_script_build",false,1727752567349498894]],"local":[{"RerunIfChanged":{"output":"debug/build/libc-d8c6f9ec786a1eeb/output","paths":["build.rs"]}}],"rustflags":[],"metadata":0,"config":0,"compile_kind":0}

View File

@ -0,0 +1 @@
{"rustc":15498924570219959682,"features":"[]","target":10196536068911168925,"profile":9251013656241001069,"path":1684066648322511884,"deps":[[5910892534286594076,"rand",false,8342118638649214880]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/password_gen-91ca86d4a4c507c3/dep-bin-password_gen"}}],"rustflags":[],"metadata":7797948686568424061,"config":2202906307356721367,"compile_kind":0}

View File

@ -0,0 +1 @@
This file has an mtime of when this was started.

View File

@ -0,0 +1 @@
This file has an mtime of when this was started.

View File

@ -0,0 +1 @@
{"rustc":15498924570219959682,"features":"[\"simd\", \"std\"]","target":731041848731596649,"profile":12637318739757120569,"path":7814766979158343942,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/ppv-lite86-f7dcf9712b1e2a6b/dep-lib-ppv-lite86"}}],"rustflags":[],"metadata":14155036307809790115,"config":2202906307356721367,"compile_kind":0}

View File

@ -0,0 +1 @@
This file has an mtime of when this was started.

View File

@ -0,0 +1 @@
a007da12b428c573

View File

@ -0,0 +1 @@
{"rustc":15498924570219959682,"features":"[\"alloc\", \"default\", \"getrandom\", \"libc\", \"rand_chacha\", \"std\", \"std_rng\"]","target":8770996785908029621,"profile":12637318739757120569,"path":10274778699620659887,"deps":[[1565494060434293766,"rand_core",false,12702666641737761540],[10042388369396437804,"libc",false,9244254133112470176],[12017018019769837221,"rand_chacha",false,7736840171869181837]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/rand-7ce7f2285d522414/dep-lib-rand"}}],"rustflags":[],"metadata":16964019146302480911,"config":2202906307356721367,"compile_kind":0}

View File

@ -0,0 +1 @@
This file has an mtime of when this was started.

View File

@ -0,0 +1 @@
{"rustc":15498924570219959682,"features":"[\"std\"]","target":10091652985973831551,"profile":12637318739757120569,"path":7961219949867245768,"deps":[[1565494060434293766,"rand_core",false,12702666641737761540],[4511957894497802922,"ppv_lite86",false,16500258338288450475]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/rand_chacha-d2aa93da4db07082/dep-lib-rand_chacha"}}],"rustflags":[],"metadata":2235018391756195449,"config":2202906307356721367,"compile_kind":0}

View File

@ -0,0 +1 @@
This file has an mtime of when this was started.

View File

@ -0,0 +1 @@
04c3fb5002f048b0

View File

@ -0,0 +1 @@
{"rustc":15498924570219959682,"features":"[\"alloc\", \"getrandom\", \"std\"]","target":14554634924080965175,"profile":12637318739757120569,"path":11375889639675763279,"deps":[[17296916443703231720,"getrandom",false,5821456773319992542]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/rand_core-d030727228b992af/dep-lib-rand_core"}}],"rustflags":[],"metadata":3275543247315060703,"config":2202906307356721367,"compile_kind":0}

View File

@ -0,0 +1,5 @@
/my/work/xpk-git/dumps/rust/password_gen/target/debug/build/libc-4245541bb9212cf6/build_script_build-4245541bb9212cf6: /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.139/build.rs
/my/work/xpk-git/dumps/rust/password_gen/target/debug/build/libc-4245541bb9212cf6/build_script_build-4245541bb9212cf6.d: /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.139/build.rs
/home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.139/build.rs:

View File

@ -0,0 +1 @@
This file has an mtime of when this was started.

View File

@ -0,0 +1,13 @@
cargo:rerun-if-changed=build.rs
cargo:rustc-cfg=freebsd11
cargo:rustc-cfg=libc_priv_mod_use
cargo:rustc-cfg=libc_union
cargo:rustc-cfg=libc_const_size_of
cargo:rustc-cfg=libc_align
cargo:rustc-cfg=libc_int128
cargo:rustc-cfg=libc_core_cvoid
cargo:rustc-cfg=libc_packedN
cargo:rustc-cfg=libc_cfg_target_vendor
cargo:rustc-cfg=libc_non_exhaustive
cargo:rustc-cfg=libc_ptr_addr_of
cargo:rustc-cfg=libc_underscore_const_names

View File

@ -0,0 +1 @@
/my/work/xpk-git/dumps/rust/password_gen/target/debug/build/libc-d8c6f9ec786a1eeb/out

View File

@ -0,0 +1,7 @@
/my/work/xpk-git/dumps/rust/password_gen/target/debug/deps/cfg_if-42918be7e08a4fb9.rmeta: /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/cfg-if-1.0.0/src/lib.rs
/my/work/xpk-git/dumps/rust/password_gen/target/debug/deps/libcfg_if-42918be7e08a4fb9.rlib: /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/cfg-if-1.0.0/src/lib.rs
/my/work/xpk-git/dumps/rust/password_gen/target/debug/deps/cfg_if-42918be7e08a4fb9.d: /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/cfg-if-1.0.0/src/lib.rs
/home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/cfg-if-1.0.0/src/lib.rs:

View File

@ -0,0 +1,13 @@
/my/work/xpk-git/dumps/rust/password_gen/target/debug/deps/getrandom-c0def49cc27083e1.rmeta: /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/getrandom-0.2.8/src/lib.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/getrandom-0.2.8/src/error.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/getrandom-0.2.8/src/util.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/getrandom-0.2.8/src/error_impls.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/getrandom-0.2.8/src/util_libc.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/getrandom-0.2.8/src/use_file.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/getrandom-0.2.8/src/linux_android.rs
/my/work/xpk-git/dumps/rust/password_gen/target/debug/deps/libgetrandom-c0def49cc27083e1.rlib: /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/getrandom-0.2.8/src/lib.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/getrandom-0.2.8/src/error.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/getrandom-0.2.8/src/util.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/getrandom-0.2.8/src/error_impls.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/getrandom-0.2.8/src/util_libc.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/getrandom-0.2.8/src/use_file.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/getrandom-0.2.8/src/linux_android.rs
/my/work/xpk-git/dumps/rust/password_gen/target/debug/deps/getrandom-c0def49cc27083e1.d: /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/getrandom-0.2.8/src/lib.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/getrandom-0.2.8/src/error.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/getrandom-0.2.8/src/util.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/getrandom-0.2.8/src/error_impls.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/getrandom-0.2.8/src/util_libc.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/getrandom-0.2.8/src/use_file.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/getrandom-0.2.8/src/linux_android.rs
/home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/getrandom-0.2.8/src/lib.rs:
/home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/getrandom-0.2.8/src/error.rs:
/home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/getrandom-0.2.8/src/util.rs:
/home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/getrandom-0.2.8/src/error_impls.rs:
/home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/getrandom-0.2.8/src/util_libc.rs:
/home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/getrandom-0.2.8/src/use_file.rs:
/home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/getrandom-0.2.8/src/linux_android.rs:

View File

@ -0,0 +1,23 @@
/my/work/xpk-git/dumps/rust/password_gen/target/debug/deps/libc-5dcd8098fb66e3ba.rmeta: /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.139/src/lib.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.139/src/macros.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.139/src/fixed_width_ints.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.139/src/unix/mod.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.139/src/unix/linux_like/mod.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.139/src/unix/linux_like/linux/mod.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.139/src/unix/linux_like/linux/arch/mod.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.139/src/unix/linux_like/linux/gnu/mod.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.139/src/unix/linux_like/linux/gnu/b64/mod.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.139/src/unix/linux_like/linux/gnu/b64/x86_64/mod.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.139/src/unix/linux_like/linux/gnu/b64/x86_64/not_x32.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.139/src/unix/linux_like/linux/gnu/b64/x86_64/align.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.139/src/unix/linux_like/linux/gnu/align.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.139/src/unix/linux_like/linux/arch/generic/mod.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.139/src/unix/linux_like/linux/align.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.139/src/unix/linux_like/linux/non_exhaustive.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.139/src/unix/align.rs
/my/work/xpk-git/dumps/rust/password_gen/target/debug/deps/liblibc-5dcd8098fb66e3ba.rlib: /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.139/src/lib.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.139/src/macros.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.139/src/fixed_width_ints.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.139/src/unix/mod.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.139/src/unix/linux_like/mod.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.139/src/unix/linux_like/linux/mod.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.139/src/unix/linux_like/linux/arch/mod.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.139/src/unix/linux_like/linux/gnu/mod.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.139/src/unix/linux_like/linux/gnu/b64/mod.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.139/src/unix/linux_like/linux/gnu/b64/x86_64/mod.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.139/src/unix/linux_like/linux/gnu/b64/x86_64/not_x32.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.139/src/unix/linux_like/linux/gnu/b64/x86_64/align.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.139/src/unix/linux_like/linux/gnu/align.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.139/src/unix/linux_like/linux/arch/generic/mod.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.139/src/unix/linux_like/linux/align.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.139/src/unix/linux_like/linux/non_exhaustive.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.139/src/unix/align.rs
/my/work/xpk-git/dumps/rust/password_gen/target/debug/deps/libc-5dcd8098fb66e3ba.d: /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.139/src/lib.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.139/src/macros.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.139/src/fixed_width_ints.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.139/src/unix/mod.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.139/src/unix/linux_like/mod.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.139/src/unix/linux_like/linux/mod.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.139/src/unix/linux_like/linux/arch/mod.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.139/src/unix/linux_like/linux/gnu/mod.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.139/src/unix/linux_like/linux/gnu/b64/mod.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.139/src/unix/linux_like/linux/gnu/b64/x86_64/mod.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.139/src/unix/linux_like/linux/gnu/b64/x86_64/not_x32.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.139/src/unix/linux_like/linux/gnu/b64/x86_64/align.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.139/src/unix/linux_like/linux/gnu/align.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.139/src/unix/linux_like/linux/arch/generic/mod.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.139/src/unix/linux_like/linux/align.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.139/src/unix/linux_like/linux/non_exhaustive.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.139/src/unix/align.rs
/home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.139/src/lib.rs:
/home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.139/src/macros.rs:
/home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.139/src/fixed_width_ints.rs:
/home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.139/src/unix/mod.rs:
/home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.139/src/unix/linux_like/mod.rs:
/home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.139/src/unix/linux_like/linux/mod.rs:
/home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.139/src/unix/linux_like/linux/arch/mod.rs:
/home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.139/src/unix/linux_like/linux/gnu/mod.rs:
/home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.139/src/unix/linux_like/linux/gnu/b64/mod.rs:
/home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.139/src/unix/linux_like/linux/gnu/b64/x86_64/mod.rs:
/home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.139/src/unix/linux_like/linux/gnu/b64/x86_64/not_x32.rs:
/home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.139/src/unix/linux_like/linux/gnu/b64/x86_64/align.rs:
/home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.139/src/unix/linux_like/linux/gnu/align.rs:
/home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.139/src/unix/linux_like/linux/arch/generic/mod.rs:
/home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.139/src/unix/linux_like/linux/align.rs:
/home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.139/src/unix/linux_like/linux/non_exhaustive.rs:
/home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.139/src/unix/align.rs:

View File

@ -0,0 +1,5 @@
/my/work/xpk-git/dumps/rust/password_gen/target/debug/deps/password_gen-91ca86d4a4c507c3: src/main.rs
/my/work/xpk-git/dumps/rust/password_gen/target/debug/deps/password_gen-91ca86d4a4c507c3.d: src/main.rs
src/main.rs:

View File

@ -0,0 +1,11 @@
/my/work/xpk-git/dumps/rust/password_gen/target/debug/deps/ppv_lite86-f7dcf9712b1e2a6b.rmeta: /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/ppv-lite86-0.2.17/src/lib.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/ppv-lite86-0.2.17/src/soft.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/ppv-lite86-0.2.17/src/types.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/ppv-lite86-0.2.17/src/x86_64/mod.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/ppv-lite86-0.2.17/src/x86_64/sse2.rs
/my/work/xpk-git/dumps/rust/password_gen/target/debug/deps/libppv_lite86-f7dcf9712b1e2a6b.rlib: /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/ppv-lite86-0.2.17/src/lib.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/ppv-lite86-0.2.17/src/soft.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/ppv-lite86-0.2.17/src/types.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/ppv-lite86-0.2.17/src/x86_64/mod.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/ppv-lite86-0.2.17/src/x86_64/sse2.rs
/my/work/xpk-git/dumps/rust/password_gen/target/debug/deps/ppv_lite86-f7dcf9712b1e2a6b.d: /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/ppv-lite86-0.2.17/src/lib.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/ppv-lite86-0.2.17/src/soft.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/ppv-lite86-0.2.17/src/types.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/ppv-lite86-0.2.17/src/x86_64/mod.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/ppv-lite86-0.2.17/src/x86_64/sse2.rs
/home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/ppv-lite86-0.2.17/src/lib.rs:
/home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/ppv-lite86-0.2.17/src/soft.rs:
/home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/ppv-lite86-0.2.17/src/types.rs:
/home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/ppv-lite86-0.2.17/src/x86_64/mod.rs:
/home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/ppv-lite86-0.2.17/src/x86_64/sse2.rs:

View File

@ -0,0 +1,29 @@
/my/work/xpk-git/dumps/rust/password_gen/target/debug/deps/rand-7ce7f2285d522414.rmeta: /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.8.5/src/lib.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.8.5/src/distributions/mod.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.8.5/src/distributions/bernoulli.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.8.5/src/distributions/distribution.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.8.5/src/distributions/float.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.8.5/src/distributions/integer.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.8.5/src/distributions/other.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.8.5/src/distributions/slice.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.8.5/src/distributions/utils.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.8.5/src/distributions/weighted_index.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.8.5/src/distributions/uniform.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.8.5/src/distributions/weighted.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.8.5/src/prelude.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.8.5/src/rng.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.8.5/src/rngs/mod.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.8.5/src/rngs/adapter/mod.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.8.5/src/rngs/adapter/read.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.8.5/src/rngs/adapter/reseeding.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.8.5/src/rngs/mock.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.8.5/src/rngs/std.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.8.5/src/rngs/thread.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.8.5/src/seq/mod.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.8.5/src/seq/index.rs
/my/work/xpk-git/dumps/rust/password_gen/target/debug/deps/librand-7ce7f2285d522414.rlib: /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.8.5/src/lib.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.8.5/src/distributions/mod.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.8.5/src/distributions/bernoulli.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.8.5/src/distributions/distribution.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.8.5/src/distributions/float.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.8.5/src/distributions/integer.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.8.5/src/distributions/other.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.8.5/src/distributions/slice.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.8.5/src/distributions/utils.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.8.5/src/distributions/weighted_index.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.8.5/src/distributions/uniform.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.8.5/src/distributions/weighted.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.8.5/src/prelude.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.8.5/src/rng.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.8.5/src/rngs/mod.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.8.5/src/rngs/adapter/mod.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.8.5/src/rngs/adapter/read.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.8.5/src/rngs/adapter/reseeding.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.8.5/src/rngs/mock.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.8.5/src/rngs/std.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.8.5/src/rngs/thread.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.8.5/src/seq/mod.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.8.5/src/seq/index.rs
/my/work/xpk-git/dumps/rust/password_gen/target/debug/deps/rand-7ce7f2285d522414.d: /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.8.5/src/lib.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.8.5/src/distributions/mod.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.8.5/src/distributions/bernoulli.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.8.5/src/distributions/distribution.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.8.5/src/distributions/float.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.8.5/src/distributions/integer.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.8.5/src/distributions/other.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.8.5/src/distributions/slice.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.8.5/src/distributions/utils.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.8.5/src/distributions/weighted_index.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.8.5/src/distributions/uniform.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.8.5/src/distributions/weighted.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.8.5/src/prelude.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.8.5/src/rng.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.8.5/src/rngs/mod.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.8.5/src/rngs/adapter/mod.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.8.5/src/rngs/adapter/read.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.8.5/src/rngs/adapter/reseeding.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.8.5/src/rngs/mock.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.8.5/src/rngs/std.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.8.5/src/rngs/thread.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.8.5/src/seq/mod.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.8.5/src/seq/index.rs
/home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.8.5/src/lib.rs:
/home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.8.5/src/distributions/mod.rs:
/home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.8.5/src/distributions/bernoulli.rs:
/home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.8.5/src/distributions/distribution.rs:
/home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.8.5/src/distributions/float.rs:
/home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.8.5/src/distributions/integer.rs:
/home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.8.5/src/distributions/other.rs:
/home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.8.5/src/distributions/slice.rs:
/home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.8.5/src/distributions/utils.rs:
/home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.8.5/src/distributions/weighted_index.rs:
/home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.8.5/src/distributions/uniform.rs:
/home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.8.5/src/distributions/weighted.rs:
/home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.8.5/src/prelude.rs:
/home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.8.5/src/rng.rs:
/home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.8.5/src/rngs/mod.rs:
/home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.8.5/src/rngs/adapter/mod.rs:
/home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.8.5/src/rngs/adapter/read.rs:
/home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.8.5/src/rngs/adapter/reseeding.rs:
/home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.8.5/src/rngs/mock.rs:
/home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.8.5/src/rngs/std.rs:
/home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.8.5/src/rngs/thread.rs:
/home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.8.5/src/seq/mod.rs:
/home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.8.5/src/seq/index.rs:

View File

@ -0,0 +1,9 @@
/my/work/xpk-git/dumps/rust/password_gen/target/debug/deps/rand_chacha-d2aa93da4db07082.rmeta: /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_chacha-0.3.1/src/lib.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_chacha-0.3.1/src/chacha.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_chacha-0.3.1/src/guts.rs
/my/work/xpk-git/dumps/rust/password_gen/target/debug/deps/librand_chacha-d2aa93da4db07082.rlib: /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_chacha-0.3.1/src/lib.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_chacha-0.3.1/src/chacha.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_chacha-0.3.1/src/guts.rs
/my/work/xpk-git/dumps/rust/password_gen/target/debug/deps/rand_chacha-d2aa93da4db07082.d: /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_chacha-0.3.1/src/lib.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_chacha-0.3.1/src/chacha.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_chacha-0.3.1/src/guts.rs
/home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_chacha-0.3.1/src/lib.rs:
/home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_chacha-0.3.1/src/chacha.rs:
/home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_chacha-0.3.1/src/guts.rs:

View File

@ -0,0 +1,12 @@
/my/work/xpk-git/dumps/rust/password_gen/target/debug/deps/rand_core-d030727228b992af.rmeta: /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_core-0.6.4/src/lib.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_core-0.6.4/src/block.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_core-0.6.4/src/error.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_core-0.6.4/src/impls.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_core-0.6.4/src/le.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_core-0.6.4/src/os.rs
/my/work/xpk-git/dumps/rust/password_gen/target/debug/deps/librand_core-d030727228b992af.rlib: /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_core-0.6.4/src/lib.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_core-0.6.4/src/block.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_core-0.6.4/src/error.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_core-0.6.4/src/impls.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_core-0.6.4/src/le.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_core-0.6.4/src/os.rs
/my/work/xpk-git/dumps/rust/password_gen/target/debug/deps/rand_core-d030727228b992af.d: /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_core-0.6.4/src/lib.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_core-0.6.4/src/block.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_core-0.6.4/src/error.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_core-0.6.4/src/impls.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_core-0.6.4/src/le.rs /home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_core-0.6.4/src/os.rs
/home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_core-0.6.4/src/lib.rs:
/home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_core-0.6.4/src/block.rs:
/home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_core-0.6.4/src/error.rs:
/home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_core-0.6.4/src/impls.rs:
/home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_core-0.6.4/src/le.rs:
/home/kn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_core-0.6.4/src/os.rs:

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