diff --git a/.gitignore b/.gitignore index 1b0f206..777c3bf 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,4 @@ _build c_src priv -ebin +ebin/*.beam diff --git a/ebin/gmminer.app b/ebin/gmminer.app new file mode 100644 index 0000000..6f72fd8 --- /dev/null +++ b/ebin/gmminer.app @@ -0,0 +1,11 @@ +{application,gmminer, + [{description,"Gajumaru Cuckoo Cycle mining support"}, + {vsn,"1.0.1"}, + {registered,[]}, + {applications,[kernel,stdlib,gmcuckoo]}, + {env,[]}, + {modules,[gmminer_blake2b_256,gmminer_pow,gmminer_pow_cuckoo, + gmminer_siphash24]}, + {maintainers,[]}, + {licenses,[]}, + {links,[]}]}.