├── .github └── workflows │ ├── generated-pr.yml │ └── stale.yml ├── .gitignore ├── Cartfile ├── LICENSE ├── README.md ├── SwiftIpfsApi.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ └── SwiftIpfsApi.xcscheme ├── SwiftIpfsApi ├── Extensions │ └── Dictionary.swift ├── HttpIo.swift ├── Info.plist ├── IpfsApi.swift ├── JsonType.swift ├── MerkleNode.swift ├── Multipart.swift ├── NetworkIo.swift ├── Subcommands │ ├── Block.swift │ ├── Bootstrap.swift │ ├── Config.swift │ ├── Dht.swift │ ├── Diag.swift │ ├── File.swift │ ├── IpfsObject.swift │ ├── Name.swift │ ├── Pin.swift │ ├── Refs.swift │ ├── Repo.swift │ ├── Stats.swift │ ├── Swarm.swift │ └── Update.swift └── SwiftIpfsApi.h ├── SwiftIpfsApiTests ├── Info.plist └── SwiftIpfsApiTests.swift └── dependencies.md /.github/workflows/generated-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/swift-ipfs-http-client/HEAD/.github/workflows/generated-pr.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/swift-ipfs-http-client/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/swift-ipfs-http-client/HEAD/.gitignore -------------------------------------------------------------------------------- /Cartfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/swift-ipfs-http-client/HEAD/Cartfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/swift-ipfs-http-client/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/swift-ipfs-http-client/HEAD/README.md -------------------------------------------------------------------------------- /SwiftIpfsApi.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/swift-ipfs-http-client/HEAD/SwiftIpfsApi.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SwiftIpfsApi.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/swift-ipfs-http-client/HEAD/SwiftIpfsApi.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SwiftIpfsApi.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/swift-ipfs-http-client/HEAD/SwiftIpfsApi.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /SwiftIpfsApi.xcodeproj/xcshareddata/xcschemes/SwiftIpfsApi.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/swift-ipfs-http-client/HEAD/SwiftIpfsApi.xcodeproj/xcshareddata/xcschemes/SwiftIpfsApi.xcscheme -------------------------------------------------------------------------------- /SwiftIpfsApi/Extensions/Dictionary.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/swift-ipfs-http-client/HEAD/SwiftIpfsApi/Extensions/Dictionary.swift -------------------------------------------------------------------------------- /SwiftIpfsApi/HttpIo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/swift-ipfs-http-client/HEAD/SwiftIpfsApi/HttpIo.swift -------------------------------------------------------------------------------- /SwiftIpfsApi/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/swift-ipfs-http-client/HEAD/SwiftIpfsApi/Info.plist -------------------------------------------------------------------------------- /SwiftIpfsApi/IpfsApi.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/swift-ipfs-http-client/HEAD/SwiftIpfsApi/IpfsApi.swift -------------------------------------------------------------------------------- /SwiftIpfsApi/JsonType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/swift-ipfs-http-client/HEAD/SwiftIpfsApi/JsonType.swift -------------------------------------------------------------------------------- /SwiftIpfsApi/MerkleNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/swift-ipfs-http-client/HEAD/SwiftIpfsApi/MerkleNode.swift -------------------------------------------------------------------------------- /SwiftIpfsApi/Multipart.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/swift-ipfs-http-client/HEAD/SwiftIpfsApi/Multipart.swift -------------------------------------------------------------------------------- /SwiftIpfsApi/NetworkIo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/swift-ipfs-http-client/HEAD/SwiftIpfsApi/NetworkIo.swift -------------------------------------------------------------------------------- /SwiftIpfsApi/Subcommands/Block.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/swift-ipfs-http-client/HEAD/SwiftIpfsApi/Subcommands/Block.swift -------------------------------------------------------------------------------- /SwiftIpfsApi/Subcommands/Bootstrap.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/swift-ipfs-http-client/HEAD/SwiftIpfsApi/Subcommands/Bootstrap.swift -------------------------------------------------------------------------------- /SwiftIpfsApi/Subcommands/Config.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/swift-ipfs-http-client/HEAD/SwiftIpfsApi/Subcommands/Config.swift -------------------------------------------------------------------------------- /SwiftIpfsApi/Subcommands/Dht.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/swift-ipfs-http-client/HEAD/SwiftIpfsApi/Subcommands/Dht.swift -------------------------------------------------------------------------------- /SwiftIpfsApi/Subcommands/Diag.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/swift-ipfs-http-client/HEAD/SwiftIpfsApi/Subcommands/Diag.swift -------------------------------------------------------------------------------- /SwiftIpfsApi/Subcommands/File.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/swift-ipfs-http-client/HEAD/SwiftIpfsApi/Subcommands/File.swift -------------------------------------------------------------------------------- /SwiftIpfsApi/Subcommands/IpfsObject.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/swift-ipfs-http-client/HEAD/SwiftIpfsApi/Subcommands/IpfsObject.swift -------------------------------------------------------------------------------- /SwiftIpfsApi/Subcommands/Name.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/swift-ipfs-http-client/HEAD/SwiftIpfsApi/Subcommands/Name.swift -------------------------------------------------------------------------------- /SwiftIpfsApi/Subcommands/Pin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/swift-ipfs-http-client/HEAD/SwiftIpfsApi/Subcommands/Pin.swift -------------------------------------------------------------------------------- /SwiftIpfsApi/Subcommands/Refs.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/swift-ipfs-http-client/HEAD/SwiftIpfsApi/Subcommands/Refs.swift -------------------------------------------------------------------------------- /SwiftIpfsApi/Subcommands/Repo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/swift-ipfs-http-client/HEAD/SwiftIpfsApi/Subcommands/Repo.swift -------------------------------------------------------------------------------- /SwiftIpfsApi/Subcommands/Stats.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/swift-ipfs-http-client/HEAD/SwiftIpfsApi/Subcommands/Stats.swift -------------------------------------------------------------------------------- /SwiftIpfsApi/Subcommands/Swarm.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/swift-ipfs-http-client/HEAD/SwiftIpfsApi/Subcommands/Swarm.swift -------------------------------------------------------------------------------- /SwiftIpfsApi/Subcommands/Update.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/swift-ipfs-http-client/HEAD/SwiftIpfsApi/Subcommands/Update.swift -------------------------------------------------------------------------------- /SwiftIpfsApi/SwiftIpfsApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/swift-ipfs-http-client/HEAD/SwiftIpfsApi/SwiftIpfsApi.h -------------------------------------------------------------------------------- /SwiftIpfsApiTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/swift-ipfs-http-client/HEAD/SwiftIpfsApiTests/Info.plist -------------------------------------------------------------------------------- /SwiftIpfsApiTests/SwiftIpfsApiTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/swift-ipfs-http-client/HEAD/SwiftIpfsApiTests/SwiftIpfsApiTests.swift -------------------------------------------------------------------------------- /dependencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipfs-shipyard/swift-ipfs-http-client/HEAD/dependencies.md --------------------------------------------------------------------------------