sqlx-scylladb 0.1.2

A database driver for ScyllaDB to be used with the Rust sqlx framework.
Documentation
services:
  scylladb:
    image: scylladb/scylla:2025.2
    command:
      [
        "--listen-address",
        "0.0.0.0",
        "--broadcast-rpc-address",
        "127.0.0.1",
        "--smp",
        "1",
        "--auto-snapshot",
        "false",
        "--max-partition-key-restrictions-per-query",
        "20000",
      ]
    volumes:
      - ./scylla.yml:/etc/scylla/scylla.yaml
      - ./tests/certs/ca-cert.pem:/etc/scylla/conf/ca.crt
      - ./tests/certs/server-cert.pem:/etc/scylla/conf/scylla.crt
      - ./tests/certs/server-key.pem:/etc/scylla/conf/scylla.key
      # - ./tests/certs:/certs # debug
    ports:
      - 9042:9042
      - 9142:9142