Skip to content

Commit dd35c59

Browse files
authored
Make db_connection a hard dependency. (Fixes #174.) (#175)
Though using other DB connection pooling mechanisms is technically possible, IMHO most users (including the test suite here) use db_connection, so the cost is really included unnecessary code in that case. Will welcome a well-crafted PR reversing this if anybody has such a need.
1 parent 5bb4e72 commit dd35c59

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ defmodule Sqlite.Ecto2.Mixfile do
3434
[{:connection, "~> 1.0.3"},
3535
{:coverex, "~> 1.4.11", only: :test},
3636
{:credo, "~> 0.7", only: [:dev, :test]},
37-
{:db_connection, "~> 1.1.0", optional: true},
37+
{:db_connection, "~> 1.1.0"},
3838
{:decimal, "~> 1.2"},
3939
{:dogma, "~> 0.1", only: :dev},
4040
{:esqlite, "~> 0.2.3"},

0 commit comments

Comments
 (0)