Skip to content

Commit 245926e

Browse files
committed
implement omaha response parsing
1 parent 8763ec9 commit 245926e

File tree

8 files changed

+429
-2
lines changed

8 files changed

+429
-2
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
/target
2+
/omaha/target

omaha/Cargo.lock

Lines changed: 100 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

omaha/src/lib.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,6 @@ pub use self::uuid::*;
33

44
pub mod request;
55
pub use request::Request;
6+
7+
pub mod response;
8+
pub use response::Response;

omaha/src/request.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
use std::borrow::Cow;
22
use std::fmt;
33

4-
use hard_xml::{XmlWrite};
4+
use hard_xml::XmlWrite;
55

66
use crate as omaha;
77

0 commit comments

Comments
 (0)