mirror of
				https://github.com/optim-enterprises-bv/vault.git
				synced 2025-10-31 02:28:09 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			346 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			346 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package raft
 | |
| 
 | |
| // If we downgrade msgpack from v1.1.5 to v0.5.5, everything will still
 | |
| // work, but any pre-existing raft clusters will break on upgrade.
 | |
| // This file exists so that the Vault project has an explicit dependency
 | |
| // on the library, which allows us to pin the version in go.mod.
 | |
| 
 | |
| import (
 | |
| 	_ "github.com/hashicorp/go-msgpack/codec"
 | |
| )
 | 
