Mae Miller
Mae Miller
Actually [this](https://github.com/graph-gophers/graphql-go) seems to be the more idiomatic library? Not sure but I'd like to see this too! ^_^
Here is a row from the CSV ```csv COUNTY AGENCY NAME NCIC_AGENCY_CODE MONTH YEAR OFFICERS_KILLED_FELONY OFFICERS_KILLED_ACCIDENT Alameda County Alameda Co. Sheriff's Department 100.0 1.0 2000.0 0.0 0.0 ``` I'd like...
This is happening to me as well
Hmm tried running `cargo run --release` and got ``` error: Pre-checks for host and toolchain failed: Provided host 'x86_64-unknown-openbsd' couldn't be converted to partial triple If you are unsure of...
Damn I get this build error: ``` error[E0432]: unresolved import `tokio::net::TcpStream` --> tokio-libtls/src/prelude.rs:19:9 | 19 | pub use tokio::net::TcpStream; | ^^^^^^^^^^^^^^^^^^^^^ no `TcpStream` in `net` error[E0432]: unresolved import `tokio::net::TcpStream` -->...
Oop never mind using [this](https://github.com/reyk/rust-libtls) builds fine :)
The namespace looks like: ```clojure (ns redblack-duct.main (:gen-class) (:require [duct.core :as duct])) (duct/load-hierarchy) (defn -main [& args] (let [keys (or (duct/parse-keys args) [:duct/daemon]) profiles [:duct.profile/prod]] (-> (duct/resource "redblack_duct/config.edn") (duct/read-config) (duct/exec-config...
Dependencies look up to date
Hmm I'm not sure. It's in resources but I'm sure if it's being included. Do you know how I could check?
I think I figured out how to include the duct_hierarchy.edn file but now I'm getting a stranger runtime exception ``` Exception in thread "main" java.lang.NoClassDefFoundError: clojure/lang/Var at redblack_duct.main.(Unknown Source) Caused...