feat(opnsense-config): Refactor config to use a repository trait, implement file based and ssh, save a full config file

This commit is contained in:
Jean-Gabriel Gill-Couture
2024-10-14 16:13:20 -04:00
parent 8459c38499
commit b332723431
4 changed files with 2917 additions and 45 deletions

View File

@@ -4,10 +4,12 @@ version = "0.1.0"
edition = "2021"
[dependencies]
serde = { version = "1.0.123", features = [ "derive" ] }
log = { workspace = true }
russh = { workspace = true }
russh-keys = { workspace = true }
yaserde = "0.11.1"
yaserde_derive = "0.11.1"
yaserde = { git = "https://git.nationtech.io/NationTech/yaserde" }
yaserde_derive = { git = "https://git.nationtech.io/NationTech/yaserde" }
xml-rs = "0.8"
thiserror = "1.0"
async-trait = { workspace = true }