github.com/joomcode/cue@v0.4.4-0.20221111115225-539fe3512047/pkg/register.go (about)

     1  // Copyright 2020 CUE Authors
     2  //
     3  // Licensed under the Apache License, Version 2.0 (the "License");
     4  // you may not use this file except in compliance with the License.
     5  // You may obtain a copy of the License at
     6  //
     7  //     http://www.apache.org/licenses/LICENSE-2.0
     8  //
     9  // Unless required by applicable law or agreed to in writing, software
    10  // distributed under the License is distributed on an "AS IS" BASIS,
    11  // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    12  // See the License for the specific language governing permissions and
    13  // limitations under the License.
    14  
    15  package pkg
    16  
    17  import (
    18  	_ "github.com/joomcode/cue/pkg/crypto/ed25519"
    19  	_ "github.com/joomcode/cue/pkg/crypto/hmac"
    20  	_ "github.com/joomcode/cue/pkg/crypto/md5"
    21  	_ "github.com/joomcode/cue/pkg/crypto/sha1"
    22  	_ "github.com/joomcode/cue/pkg/crypto/sha256"
    23  	_ "github.com/joomcode/cue/pkg/crypto/sha512"
    24  	_ "github.com/joomcode/cue/pkg/encoding/base64"
    25  	_ "github.com/joomcode/cue/pkg/encoding/csv"
    26  	_ "github.com/joomcode/cue/pkg/encoding/hex"
    27  	_ "github.com/joomcode/cue/pkg/encoding/json"
    28  	_ "github.com/joomcode/cue/pkg/encoding/yaml"
    29  	_ "github.com/joomcode/cue/pkg/html"
    30  	_ "github.com/joomcode/cue/pkg/joom"
    31  
    32  	_ "github.com/joomcode/cue/pkg/list"
    33  	_ "github.com/joomcode/cue/pkg/math"
    34  	_ "github.com/joomcode/cue/pkg/math/bits"
    35  	_ "github.com/joomcode/cue/pkg/net"
    36  	_ "github.com/joomcode/cue/pkg/path"
    37  	_ "github.com/joomcode/cue/pkg/regexp"
    38  	_ "github.com/joomcode/cue/pkg/strconv"
    39  	_ "github.com/joomcode/cue/pkg/strings"
    40  	_ "github.com/joomcode/cue/pkg/struct"
    41  	_ "github.com/joomcode/cue/pkg/text/tabwriter"
    42  	_ "github.com/joomcode/cue/pkg/text/template"
    43  	_ "github.com/joomcode/cue/pkg/time"
    44  	_ "github.com/joomcode/cue/pkg/tool"
    45  	_ "github.com/joomcode/cue/pkg/tool/cli"
    46  	_ "github.com/joomcode/cue/pkg/tool/exec"
    47  	_ "github.com/joomcode/cue/pkg/tool/file"
    48  	_ "github.com/joomcode/cue/pkg/tool/http"
    49  	_ "github.com/joomcode/cue/pkg/tool/os"
    50  	_ "github.com/joomcode/cue/pkg/uuid"
    51  )