Skip to content
This repository has been archived by the owner on Dec 7, 2023. It is now read-only.

Commit

Permalink
chore: remove bundled libjq dependency
Browse files Browse the repository at this point in the history
Compiling libjq takes ~90 seconds on each clean build. With the
`bundled` feature removed, the application now requires a locally
installed `libjq` library to be dynamically linked.

On macOS, this is done as follows:

    brew install jq
    env JQ_LIB_DIR=/usr/local/lib cargo build
  • Loading branch information
JeanMertz committed Nov 27, 2019
1 parent a777fa8 commit 9201b3d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 20 deletions.
19 changes: 0 additions & 19 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/processors/json-edit/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ travis-ci = { repository = "blendle/automaat" }

[dependencies]
automaat-core = { version = "0.1", path = "../../core" }
jq-rs = { version = "0.4", features = ["bundled"] }
jq-rs = { version = "0.4" }
juniper = { version = "0.13", optional = true }
serde = { version = "1", features = ["derive"] }
serde_json = "1.0"
Expand Down

0 comments on commit 9201b3d

Please sign in to comment.