go-json/internal/encoder/vm/hack.go

10 lines
275 B
Go
Raw Normal View History

package vm
import (
// HACK: compile order
2021-05-31 19:25:05 +03:00
// `vm`, `vm_indent` packages uses a lot of memory to compile,
// so forcibly make dependencies and avoid compiling in concurrent.
2021-05-31 19:25:05 +03:00
// dependency order: vm => vm_indent
_ "github.com/goccy/go-json/internal/encoder/vm_indent"
)