mirror of
				https://github.com/0glabs/0g-storage-node.git
				synced 2025-10-31 14:47:27 +00:00 
			
		
		
		
	 4eb2a50b0e
			
		
	
	
		4eb2a50b0e
		
			
		
	
	
	
	
		
			
			* Use inner lock in storage.
* Remove mut.
* Remove async lock for storage.
* Fix tests and warnings.
* Use spawn_blocking for storage task.
* Fix clippy.
* Finalize the new tx at last.
* Revert "Finalize the new tx at last."
This reverts commit b56ad5582d.
* Wait for old same-root txs to finalize.
* Use async storage in miner.
* Update rust version to 1.79.0.
* Use Vec to avoid stack overflow.
* Fix unused warning.
* Fix clippy.
* Fix test warning.
* Fix test.
* fmt.
* Use async storage in pruner.
* nit.
		
	
			
		
			
				
	
	
		
			13 lines
		
	
	
		
			365 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			365 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
| [package]
 | |
| name = "storage-async"
 | |
| version = "0.1.0"
 | |
| edition = "2021"
 | |
| 
 | |
| [dependencies]
 | |
| anyhow = { version = "1.0.58", features = ["backtrace"] }
 | |
| shared_types = { path = "../shared_types" }
 | |
| storage = { path = "../storage" }
 | |
| task_executor = { path = "../../common/task_executor" }
 | |
| tokio = { version = "1.19.2", features = ["sync"] }
 | |
| tracing = "0.1.35"
 | |
| eth2_ssz = "0.4.0" |