Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Port AWSCredentials from AWSCore #122

Merged
merged 10 commits into from
Apr 27, 2020
6 changes: 6 additions & 0 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,22 @@ version = "1.0.0"

[deps]
AWSCore = "4f1ea46c-232b-54a6-9b17-cc2d0f3e6598"
Dates = "ade2ca70-3891-5945-98fb-dc099432e06a"
HTTP = "cd3eb016-35fb-5094-929b-558a96fad6f3"
IniFile = "83e8ac13-25f8-5344-8a64-a9f2b223428f"
JSON = "682c06a0-de6a-54ab-a142-c8b1cf79cde6"
Mocking = "78c3b35d-d492-501b-9361-3d52fe80e533"
OrderedCollections = "bac558e1-5e72-5ebc-8fee-abe8a469f55d"
Retry = "20febd7b-183b-5ae2-ac4a-720e7ce64774"
mattBrzezinski marked this conversation as resolved.
Show resolved Hide resolved
SymDict = "2da68c74-98d7-5633-99d6-8493888d7b1e"

[compat]
AWSCore = "0.6"
HTTP = "0.8"
IniFile = "0.5"
JSON = "0.18, 0.19, 0.20, 0.21"
mattBrzezinski marked this conversation as resolved.
Show resolved Hide resolved
OrderedCollections = "1"
Retry = "0.3, 0.4"
SymDict = "0.3"
julia = "1"

Expand Down
1 change: 1 addition & 0 deletions src/AWS.jl
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ using SymDict

export @service, AWSServices, RestJSONService, JSONService, RestXMLService, QueryService

include("AWSCredentials.jl")
include("AWSMetadataUtilities.jl")

macro service(module_name::Symbol)
Expand Down
Loading