github.com/solo-io/cue@v0.4.7/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/solo-io/cue/pkg/crypto/hmac"
    19  	_ "github.com/solo-io/cue/pkg/crypto/md5"
    20  	_ "github.com/solo-io/cue/pkg/crypto/sha1"
    21  	_ "github.com/solo-io/cue/pkg/crypto/sha256"
    22  	_ "github.com/solo-io/cue/pkg/crypto/sha512"
    23  	_ "github.com/solo-io/cue/pkg/encoding/base64"
    24  	_ "github.com/solo-io/cue/pkg/encoding/csv"
    25  	_ "github.com/solo-io/cue/pkg/encoding/hex"
    26  	_ "github.com/solo-io/cue/pkg/encoding/json"
    27  	_ "github.com/solo-io/cue/pkg/encoding/yaml"
    28  	_ "github.com/solo-io/cue/pkg/html"
    29  
    30  	_ "github.com/solo-io/cue/pkg/list"
    31  	_ "github.com/solo-io/cue/pkg/math"
    32  	_ "github.com/solo-io/cue/pkg/math/bits"
    33  	_ "github.com/solo-io/cue/pkg/net"
    34  	_ "github.com/solo-io/cue/pkg/path"
    35  	_ "github.com/solo-io/cue/pkg/regexp"
    36  	_ "github.com/solo-io/cue/pkg/strconv"
    37  	_ "github.com/solo-io/cue/pkg/strings"
    38  	_ "github.com/solo-io/cue/pkg/struct"
    39  	_ "github.com/solo-io/cue/pkg/text/tabwriter"
    40  	_ "github.com/solo-io/cue/pkg/text/template"
    41  	_ "github.com/solo-io/cue/pkg/time"
    42  	_ "github.com/solo-io/cue/pkg/tool"
    43  	_ "github.com/solo-io/cue/pkg/tool/cli"
    44  	_ "github.com/solo-io/cue/pkg/tool/exec"
    45  	_ "github.com/solo-io/cue/pkg/tool/file"
    46  	_ "github.com/solo-io/cue/pkg/tool/http"
    47  	_ "github.com/solo-io/cue/pkg/tool/os"
    48  	_ "github.com/solo-io/cue/pkg/uuid"
    49  )