Skip to content

Commit

Permalink
mix
Browse files Browse the repository at this point in the history
  • Loading branch information
5HT committed Sep 3, 2024
1 parent c7b264a commit 2c1b50f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion config/config.exs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use Mix.Config
import Config

config :kvs,
dba: :kvs_rocks,
Expand Down
8 changes: 4 additions & 4 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ defmodule KVS.Mixfile do
def project do
[
app: :kvs,
version: "10.8.2",
version: "10.8.3",
description: "KVS Abstract Chain Database",
package: package(),
deps: deps()
]
end

def application do
[mod: {:kvs, []}, applications: [:mnesia,:ex_doc]]
[mod: {:kvs, []}, extra_applications: [:mnesia,:ex_doc]]
end

defp package do
Expand All @@ -25,8 +25,8 @@ defmodule KVS.Mixfile do

defp deps do
[
{:ex_doc, ">= 0.0.0", only: :dev},
{:rocksdb, "~> 1.6.0", only: :test}
{:ex_doc, ">= 0.0.0", only: :dev}
# {:rocksdb, "~> 1.6.0", only: :test}
]
end
end

0 comments on commit 2c1b50f

Please sign in to comment.