mirror of
				https://github.com/0glabs/0g-storage-node.git
				synced 2025-11-04 08:37:27 +00:00 
			
		
		
		
	
		
			Some checks failed
		
		
	
	abi-consistent-check / build-and-compare (push) Has been cancelled
				
			code-coverage / unittest-cov (push) Has been cancelled
				
			rust / check (push) Has been cancelled
				
			rust / test (push) Has been cancelled
				
			rust / lints (push) Has been cancelled
				
			functional-test / test (push) Has been cancelled
				
			
		
			
				
	
	
		
			31 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			TOML
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			TOML
		
	
	
	
	
	
[package]
 | 
						|
name = "rpc"
 | 
						|
version = "0.1.0"
 | 
						|
edition = "2021"
 | 
						|
 | 
						|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
 | 
						|
 | 
						|
[dependencies]
 | 
						|
append_merkle = { path = "../../common/append_merkle" }
 | 
						|
miner = {path = "../miner"}
 | 
						|
futures = "0.3.21"
 | 
						|
jsonrpsee = { version = "0.14.0", features = ["full"] }
 | 
						|
network = { path = "../network" }
 | 
						|
file_location_cache = { path = "../file_location_cache" }
 | 
						|
serde = { version = "1.0.137", features = ["derive"] }
 | 
						|
serde_json = "1.0.82"
 | 
						|
base64 = "0.13.0"
 | 
						|
shared_types = { path = "../shared_types" }
 | 
						|
sync = { path = "../sync" }
 | 
						|
task_executor = { path = "../../common/task_executor" }
 | 
						|
tokio = { version = "1.19.2", features = ["macros", "sync"] }
 | 
						|
tracing = "0.1.35"
 | 
						|
chunk_pool = { path = "../chunk_pool" }
 | 
						|
storage = { path = "../storage" }
 | 
						|
storage-async = { path = "../storage-async" }
 | 
						|
merkle_light = { path = "../../common/merkle_light" }
 | 
						|
merkle_tree = { path = "../../common/merkle_tree"}
 | 
						|
futures-channel = "^0.3"
 | 
						|
metrics = { workspace = true }
 | 
						|
parking_lot = "0.12.3"
 |