-
| Hi, Is there a way to use sqlx without the system having libpq installed? For example, does it support using the rust-postgres library instead? Thanks! | 
Beta Was this translation helpful? Give feedback.
      
      
          Answered by
          
            abonander
          
      
      
        Sep 29, 2023 
      
    
    Replies: 1 comment 4 replies
-
| SQLx doesn't use libpq. We have our own bespoke implementation of the Postgres protocol, similar to rust-postgres but lower level so we're not beholden to their API design. | 
Beta Was this translation helpful? Give feedback.
                  
                    4 replies
                  
                
            
      Answer selected by
        abonander
  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment
  
        
    
SQLx doesn't use libpq. We have our own bespoke implementation of the Postgres protocol, similar to rust-postgres but lower level so we're not beholden to their API design.