|
@@ -90,14 +90,18 @@ Using *erlang.mk*:
|
|
|
|
|
|
Using *rebar* (version 2 or 3):
|
|
|
|
|
|
- {deps, [
|
|
|
- {mysql, ".*", {git, "https://github.com/mysql-otp/mysql-otp",
|
|
|
- {tag, "1.7.0"}}}
|
|
|
- ]}.
|
|
|
+```erlang
|
|
|
+{deps, [
|
|
|
+ {mysql, ".*", {git, "https://github.com/mysql-otp/mysql-otp",
|
|
|
+ {tag, "1.7.0"}}}
|
|
|
+]}.
|
|
|
+```
|
|
|
|
|
|
Using *mix*:
|
|
|
|
|
|
- {:mysql, git: "https://github.com/mysql-otp/mysql-otp", tag: "1.7.0"},
|
|
|
+```elixir
|
|
|
+{:mysql, git: "https://github.com/mysql-otp/mysql-otp", tag: "1.7.0"},
|
|
|
+```
|
|
|
|
|
|
There's also a Hex package called [mysql](//hex.pm/packages/mysql).
|
|
|
|