Openflow parser
This commit is contained in:
parent
70b0d8919e
commit
fc02a678de
338 changed files with 9081 additions and 0 deletions
24
mix.exs
Normal file
24
mix.exs
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
defmodule Tres.Mixfile do
|
||||
use Mix.Project
|
||||
|
||||
def project do
|
||||
[app: :tres,
|
||||
version: "0.1.0",
|
||||
elixir: "~> 1.5",
|
||||
start_permanent: Mix.env == :prod,
|
||||
deps: deps()]
|
||||
end
|
||||
|
||||
# Run "mix help compile.app" to learn about applications.
|
||||
def application do
|
||||
[extra_applications: [:logger, :ranch],
|
||||
mod: {Tres.Application, []}]
|
||||
end
|
||||
|
||||
# Run "mix help deps" to learn about dependencies.
|
||||
defp deps do
|
||||
[{:ranch, "~> 1.4.0"},
|
||||
{:binpp, github: "jtendo/binpp", branch: "master"},
|
||||
{:pkt, github: "msantos/pkt", ref: "3afb196"}]
|
||||
end
|
||||
end
|
||||
Loading…
Add table
Add a link
Reference in a new issue