mirror of
				https://github.com/0glabs/0g-storage-node.git
				synced 2025-11-04 08:37:27 +00:00 
			
		
		
		
	* Add metrics configurations * Add metrics in router package * Add catch up info in sync service state * Add metrics for auto sync * update cargo lock
		
			
				
	
	
		
			32 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			TOML
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			TOML
		
	
	
	
	
	
[package]
 | 
						|
name = "sync"
 | 
						|
version = "0.1.0"
 | 
						|
edition = "2021"
 | 
						|
 | 
						|
[dependencies]
 | 
						|
anyhow = { version = "1.0.58", features = ["backtrace"] }
 | 
						|
append_merkle = { path = "../../common/append_merkle" }
 | 
						|
channel = { path = "../../common/channel" }
 | 
						|
file_location_cache = { path = "../file_location_cache" }
 | 
						|
log_entry_sync = { path = "../log_entry_sync" }
 | 
						|
network = { path = "../network" }
 | 
						|
rand = "0.8.5"
 | 
						|
shared_types = { path = "../shared_types" }
 | 
						|
storage = { path = "../storage" }
 | 
						|
storage-async = { path = "../storage-async" }
 | 
						|
task_executor = { path = "../../common/task_executor" }
 | 
						|
tokio = { version = "1.19.2", features = ["full"] }
 | 
						|
tracing = "0.1.35"
 | 
						|
eth2_ssz = "0.4.0"
 | 
						|
serde = { version = "1.0.137", features = ["derive"] }
 | 
						|
duration-str = "0.5.1"
 | 
						|
lazy_static = "1.4.0"
 | 
						|
metrics = { workspace = true }
 | 
						|
 | 
						|
[dev-dependencies]
 | 
						|
merkle_light = { path = "../../common/merkle_light" }
 | 
						|
 | 
						|
[dependencies.libp2p]
 | 
						|
version = "0.45.1"
 | 
						|
default-features = false
 | 
						|
features = ["websocket", "identify", "mplex", "yamux", "noise", "gossipsub", "dns-tokio", "tcp-tokio", "plaintext", "secp256k1"] |