-
Notifications
You must be signed in to change notification settings - Fork 104
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fetch spot current price to speed up loading data without caching
- Loading branch information
Showing
24 changed files
with
333 additions
and
315 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,56 +1,55 @@ | ||
module github.com/aws/amazon-ec2-instance-selector/v2 | ||
|
||
go 1.20 | ||
go 1.23 | ||
|
||
require ( | ||
github.com/aws/aws-sdk-go v1.46.6 | ||
github.com/aws/aws-sdk-go-v2 v1.24.0 | ||
github.com/aws/aws-sdk-go-v2/config v1.26.1 | ||
github.com/aws/aws-sdk-go-v2/service/ec2 v1.128.0 | ||
github.com/aws/aws-sdk-go-v2/service/pricing v1.21.6 | ||
dario.cat/mergo v1.0.1 | ||
github.com/aws/aws-sdk-go-v2 v1.32.2 | ||
github.com/aws/aws-sdk-go-v2/config v1.27.43 | ||
github.com/aws/aws-sdk-go-v2/service/ec2 v1.182.0 | ||
github.com/aws/aws-sdk-go-v2/service/pricing v1.32.2 | ||
github.com/blang/semver/v4 v4.0.0 | ||
github.com/charmbracelet/bubbles v0.16.1 | ||
github.com/charmbracelet/bubbletea v0.24.2 | ||
github.com/charmbracelet/lipgloss v0.7.1 | ||
github.com/evertras/bubble-table v0.15.2 | ||
github.com/imdario/mergo v0.3.16 | ||
github.com/charmbracelet/bubbles v0.20.0 | ||
github.com/charmbracelet/bubbletea v1.1.1 | ||
github.com/charmbracelet/lipgloss v0.13.0 | ||
github.com/evertras/bubble-table v0.17.0 | ||
github.com/mitchellh/go-homedir v1.1.0 | ||
github.com/muesli/termenv v0.15.2 | ||
github.com/oliveagle/jsonpath v0.0.0-20180606110733-2e52cf6e6852 | ||
github.com/patrickmn/go-cache v2.1.0+incompatible | ||
github.com/spf13/cobra v1.7.0 | ||
github.com/spf13/cobra v1.8.1 | ||
github.com/spf13/pflag v1.0.5 | ||
go.uber.org/multierr v1.11.0 | ||
) | ||
|
||
require ( | ||
github.com/atotto/clipboard v0.1.4 // indirect | ||
github.com/aws/aws-sdk-go-v2/credentials v1.16.12 // indirect | ||
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.14.10 // indirect | ||
github.com/aws/aws-sdk-go-v2/internal/configsources v1.2.9 // indirect | ||
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.5.9 // indirect | ||
github.com/aws/aws-sdk-go-v2/internal/ini v1.7.2 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.10.4 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.10.9 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/sso v1.18.5 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.21.5 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/sts v1.26.5 // indirect | ||
github.com/aws/smithy-go v1.19.0 // indirect | ||
github.com/aws/aws-sdk-go-v2/credentials v1.17.41 // indirect | ||
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.17 // indirect | ||
github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.21 // indirect | ||
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.6.21 // indirect | ||
github.com/aws/aws-sdk-go-v2/internal/ini v1.8.1 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.12.0 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.12.2 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/sso v1.24.2 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.28.2 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/sts v1.32.2 // indirect | ||
github.com/aws/smithy-go v1.22.0 // indirect | ||
github.com/aymanbagabas/go-osc52/v2 v2.0.1 // indirect | ||
github.com/containerd/console v1.0.4-0.20230313162750-1ae8d489ac81 // indirect | ||
github.com/charmbracelet/x/ansi v0.2.3 // indirect | ||
github.com/charmbracelet/x/term v0.2.0 // indirect | ||
github.com/erikgeiser/coninput v0.0.0-20211004153227-1c3628e74d0f // indirect | ||
github.com/inconshreveable/mousetrap v1.1.0 // indirect | ||
github.com/jmespath/go-jmespath v0.4.0 // indirect | ||
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect | ||
github.com/mattn/go-isatty v0.0.18 // indirect | ||
github.com/mattn/go-isatty v0.0.20 // indirect | ||
github.com/mattn/go-localereader v0.0.1 // indirect | ||
github.com/mattn/go-runewidth v0.0.14 // indirect | ||
github.com/muesli/ansi v0.0.0-20211018074035-2e021307bc4b // indirect | ||
github.com/mattn/go-runewidth v0.0.16 // indirect | ||
github.com/muesli/ansi v0.0.0-20230316100256-276c6243b2f6 // indirect | ||
github.com/muesli/cancelreader v0.2.2 // indirect | ||
github.com/muesli/reflow v0.3.0 // indirect | ||
github.com/rivo/uniseg v0.2.0 // indirect | ||
github.com/sahilm/fuzzy v0.1.0 // indirect | ||
golang.org/x/sync v0.1.0 // indirect | ||
golang.org/x/sys v0.7.0 // indirect | ||
golang.org/x/term v0.6.0 // indirect | ||
golang.org/x/text v0.4.0 // indirect | ||
github.com/rivo/uniseg v0.4.7 // indirect | ||
github.com/sahilm/fuzzy v0.1.1 // indirect | ||
golang.org/x/sync v0.8.0 // indirect | ||
golang.org/x/sys v0.24.0 // indirect | ||
golang.org/x/text v0.16.0 // indirect | ||
) |
Oops, something went wrong.