Proof of concept prototype of an Apache Cassandra client library for Apple platforms.
.package(url: "https://github.com/database-utility/cassandra-kit.git", branch: "main")
import CassandraKit
let session = CassandraSession(cluster: CassandraCluster(url: "cassandra://localhost"))
try session.connect()
let keyspaces = try session.execute("select * from system_schema.keyspaces")
print(keyspaces as NSArray)
Uses DataStax C/C++ Driver.