forked from NationTech/harmony
		
	Clippy is now added to the `check` in the pipeline Co-authored-by: Ian Letourneau <letourneau.ian@gmail.com> Reviewed-on: https://git.nationtech.io/NationTech/harmony/pulls/96
		
			
				
	
	
		
			29 lines
		
	
	
		
			742 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			742 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
| [package]
 | |
| name = "opnsense-config"
 | |
| edition = "2021"
 | |
| version.workspace = true
 | |
| readme.workspace = true
 | |
| license.workspace = true
 | |
| 
 | |
| [dependencies]
 | |
| serde = { version = "1.0.123", features = ["derive"] }
 | |
| log = { workspace = true }
 | |
| env_logger = { workspace = true }
 | |
| russh = { workspace = true }
 | |
| russh-keys = { workspace = true }
 | |
| thiserror = "1.0"
 | |
| async-trait = { workspace = true }
 | |
| tokio = { workspace = true }
 | |
| opnsense-config-xml = { path = "../opnsense-config-xml" }
 | |
| chrono = "0.4.38"
 | |
| russh-sftp = "2.0.6"
 | |
| serde_json = "1.0.133"
 | |
| tokio-util = { version = "0.7.13", features = ["codec"] }
 | |
| tokio-stream = "0.1.17"
 | |
| 
 | |
| [dev-dependencies]
 | |
| pretty_assertions.workspace = true
 | |
| 
 | |
| [lints.rust]
 | |
| unexpected_cfgs = { level = "warn", check-cfg = ['cfg(e2e_test)'] }
 |