/ GrothCrypto / docs / make.jl
make.jl
 1  using GrothCrypto
 2  using Documenter
 3  
 4  DocMeta.setdocmeta!(GrothCrypto, :DocTestSetup, :(using GrothCrypto); recursive=true)
 5  
 6  makedocs(;
 7      modules=[GrothCrypto],
 8      authors="0xpantera <0xpantera@proton.me>",
 9      sitename="GrothCrypto.jl",
10      format=Documenter.HTML(;
11          canonical="https://0xpantera.github.io/GrothCrypto.jl",
12          edit_link="main",
13          assets=String[],
14      ),
15      pages=[
16          "Home" => "index.md",
17      ],
18  )
19  
20  deploydocs(;
21      repo="github.com/0xpantera/GrothCrypto.jl",
22      devbranch="main",
23  )