wip: Full opnsense deserializer almost done, works on a slightly cheated config file, next step is to try the real config file

This commit is contained in:
Jean-Gabriel Gill-Couture
2024-10-18 00:48:57 -04:00
parent b332723431
commit e0acbf304b
9 changed files with 3475 additions and 24 deletions

View File

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