Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
178 changes: 178 additions & 0 deletions Manifest.toml

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

8 changes: 4 additions & 4 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
name = "ColPrac"
uuid = "e41b4c65-dcf0-4c1f-b7b6-bc66a3ea27a0"
authors = ["Chris Rackauckas <accounts@chrisrackauckas.com> and contributors"]
version = "0.1.0"

[deps]
authors = ["Chris Rackauckas <accounts@chrisrackauckas.com> and contributors"]

[compat]
ExplicitImports = "1.14.0"
julia = "1.6"

[extras]
ExplicitImports = "7d51a73a-1435-4ff3-83d9-f097790105c7"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[targets]
test = ["Test"]
test = ["ExplicitImports", "Test"]
8 changes: 8 additions & 0 deletions test/runtests.jl
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
using Test
using ColPrac
using ExplicitImports

@testset "ExplicitImports" begin
@test check_no_implicit_imports(ColPrac) === nothing
@test check_no_stale_explicit_imports(ColPrac) === nothing
end