Xcode8.3.3、Swift3でリアルタイムチャットアプリを作ろうとしているのですが、
Socket.IO-Client-Swiftをimportしてビルドしようとしたところ、
下のようなエラー・ワーニングが発生してしまいます。
(ソースはpod installで持って来ました)

・error
/Users/jip/Documents/Realtime_Chat_App-master/Client/chat/Pods/Socket.IO-Client-Swift/Source/SocketIOClientConfiguration.swift:28:62: 'Generator' has been renamed to 'Iterator'
/Users/jip/Documents/Realtime_Chat_App-master/Client/chat/Pods/Socket.IO-Client-Swift/Source/SocketIOClientConfiguration.swift:25:15: Type 'SocketIOClientConfiguration' does not conform to protocol 'Collection'
/Users/jip/Documents/Realtime_Chat_App-master/Client/chat/Pods/Socket.IO-Client-Swift/Source/SocketIOClientConfiguration.swift:25:15: Type 'SocketIOClientConfiguration' does not conform to protocol 'Sequence'
/Users/jip/Documents/Realtime_Chat_App-master/Client/chat/Pods/Socket.IO-Client-Swift/Source/SocketIOClientConfiguration.swift:25:15: Type 'SocketIOClientConfiguration' does not conform to protocol '_IndexableBase'
/Users/jip/Documents/Realtime_Chat_App-master/Client/chat/Pods/Socket.IO-Client-Swift/Source/SocketIOClient.swift:80:23: Expression type 'SocketIOClientConfiguration' is ambiguous without more context
/Users/jip/Documents/Realtime_Chat_App-master/Client/chat/Pods/Socket.IO-Client-Swift/Source/SocketEngine.swift:86:23: Expression type 'SocketIOClientConfiguration' is ambiguous without more context

・warning
/Users/jip/Documents/Realtime_Chat_App-master/Client/chat/Pods/Socket.IO-Client-Swift/Source/WebSocket.swift:627:64: String interpolation produces a debug description for an optional value; did you mean to make this explicit?       
/Users/jip/Documents/Realtime_Chat_App-master/Client/chat/Pods/Socket.IO-Client-Swift/Source/WebSocket.swift:674:21: Will never be executed
/Users/jip/Documents/Realtime_Chat_App-master/Client/chat/Pods/Socket.IO-Client-Swift/Source/SocketAnyEvent.swift:31:57: String interpolation produces a debug description for an optional value; did you mean to make this explicit?

Xcodeの画面イメージはこんな感じです。

どなたか原因や解決法をご存知ないでしょうか??