From 5979fa584429d224ac0d3cee8b124e8da04f4573 Mon Sep 17 00:00:00 2001 From: Greg Burd Date: Thu, 27 Feb 2020 09:27:07 -0500 Subject: [PATCH] Starting points for makefile and some general notes. --- Makefile | 8 ++++++++ NOTES | 13 +++++++++++++ 2 files changed, 21 insertions(+) create mode 100644 Makefile create mode 100644 NOTES diff --git a/Makefile b/Makefile new file mode 100644 index 00000000..b9a0a584 --- /dev/null +++ b/Makefile @@ -0,0 +1,8 @@ + +outdated: + for p in $(dirname $(ls Cargo.toml */Cargo.toml */*/Cargo.toml)); do echo $p; (cd $p; cargo outdated -R); done + + +fix: + $(for p in $(dirname $(ls Cargo.toml */Cargo.toml */*/Cargo.toml)); do echo $p; (cd $p; cargo fix --allow-dirty --broken-code --edition-idioms); done) + diff --git a/NOTES b/NOTES new file mode 100644 index 00000000..34c9234d --- /dev/null +++ b/NOTES @@ -0,0 +1,13 @@ + * https://github.com/edn-query-language/eql + * https://github.com/borkdude/jet + * https://github.com/walmartlabs/dyn-edn + * https://github.com/go-edn/edn + * https://github.com/smothers/cause + * https://github.com/oscaro/eq + * https://github.com/clojure-emacs/parseedn + * https://github.com/exoscale/seql + * https://github.com/axboe/liburing + * https://github.com/probcomp/BayesDB + * https://github.com/probcomp/bayeslite + * http://probcomp.csail.mit.edu/software/bayesdb/ + *