Commit 6bc82252 authored by Wohlgemuth, Jason's avatar Wohlgemuth, Jason
Browse files

feat: Add acorn-lib, cull some redundant code

parent 5fed3999
Loading
Loading
Loading
Loading
Loading
+8141 −1316

File changed.

Preview size limit exceeded, changes collapsed.

+1 −0
Original line number Diff line number Diff line
@@ -15,6 +15,7 @@ homepage = "https://xylem.ornl.gov"
repository = "https://code.ornl.gov/research-enablement/xylem"

[workspace.dependencies]
acorn-lib = "0.1.31"
clap-verbosity-flag = "2.2.0"
color-eyre = "0.6.3"
dotenvy = "0.15.0"
+6 −6
Original line number Diff line number Diff line
@@ -4,18 +4,18 @@ clean:
	@rm -rf ./bin
	@cargo clean

coverage: clean lint
	@cargo tarpaulin --out lcov --line --skip-clean --no-dead-code --engine llvm --lib

lint:
	@cargo fmt --verbose
	@cargo clippy --no-deps --all-targets --fix --allow-dirty

test: clean lint
	@cargo build
	@cargo test
	@cargo tarpaulin --out lcov --line --skip-clean
test:
	@cargo nextest run --run-ignored all

test-ci: clean lint
	@cargo build
	@cargo test
	@cargo test --lib --bins --tests

test-cross: clean
	@for target in $(TARGETS) ; do \
+546 −908

File changed.

Preview size limit exceeded, changes collapsed.

+1 −0
Original line number Diff line number Diff line
@@ -17,6 +17,7 @@ console = { version = "0.15.7", default-features = false, features = ["ansi-pars
glob = "0.3.1"
indicatif = "0.17.6"
nanoid = "0.4.0"
acorn-lib = { workspace = true }
clap-verbosity-flag = { workspace = true }
color-eyre = { workspace = true }
dotenvy = { workspace = true }
Loading