Skip to content

Commit

Permalink
🚀 Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
sebj committed Apr 11, 2021
0 parents commit 730abba
Show file tree
Hide file tree
Showing 54 changed files with 35,039 additions and 0 deletions.
54 changes: 54 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
# Xcode
#
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore

## User settings
xcuserdata/

## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9)
*.xcscmblueprint
*.xccheckout

## compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4)
build/
DerivedData/
*.moved-aside
*.pbxuser
!default.pbxuser
*.mode1v3
!default.mode1v3
*.mode2v3
!default.mode2v3
*.perspectivev3
!default.perspectivev3

## Obj-C/Swift specific
*.hmap

## App packaging
*.ipa
*.dSYM.zip
*.dSYM

## Playgrounds
timeline.xctimeline
playground.xcworkspace

# Swift Package Manager
#
Packages/
Package.pins
Package.resolved
*.xcodeproj

# Xcode automatically generates this directory with a .xcworkspacedata file and xcuserdata
# hence it is not needed unless you have added a package configuration file to your project
.swiftpm

.build/
# Code Injection
#
# After new code Injection tools there's a generated folder /iOSInjectionProject
# https://github.com/johnno1962/injectionforxcode

iOSInjectionProject/
45 changes: 45 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
// swift-tools-version:5.3

import PackageDescription

let package = Package(
name: "Steam",
platforms: [
.iOS(.v14),
.macOS(.v11),
.tvOS(.v14),
.watchOS(.v7),
],
products: [
.library(
name: "Steam",
targets: ["Steam"]),
],
dependencies: [
.package(
name: "CryptoSwift",
url: "https://github.com/krzyzanowskim/CryptoSwift.git",
.upToNextMinor(from: "1.3.8")),
.package(
name: "Gzip",
url: "https://github.com/1024jp/GzipSwift.git",
.upToNextMinor(from: "5.1.1")),
.package(
name: "SwCrypt",
url: "https://github.com/soyersoyer/SwCrypt.git",
.upToNextMinor(from: "5.1.4")),
.package(
name: "SwiftProtobuf",
url: "https://github.com/apple/swift-protobuf.git",
.upToNextMinor(from: "1.15.0")),
],
targets: [
.target(
name: "Steam",
dependencies: ["CryptoSwift", "Gzip", "SwCrypt", "SwiftProtobuf"],
exclude: ["Protobuf"]),
.testTarget(
name: "SteamTests",
dependencies: ["Steam"]),
]
)
Loading

0 comments on commit 730abba

Please sign in to comment.