-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (29 loc) · 808 Bytes
/
Copy pathCargo.toml
File metadata and controls
36 lines (29 loc) · 808 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[package]
name = "win-event-log"
version = "0.1.2"
authors = ["russ <russ@infocyte.com>"]
edition = "2018"
license = "MIT OR Apache-2.0"
[lib]
doctest = true
[package.metadata.docs.rs]
default-target = "x86_64-pc-windows-gnu"
[dependencies]
bitflags = "2"
chrono = "^0.4.38"
lazy_static = "1.2.0"
serde = { version = "1.0.85", optional = true, features = [ "derive" ] }
serde_derive = { version = "1.0.85", optional = true, default-features = false }
[dependencies.quick-xml]
version = "0.31"
optional = true
features = ["serialize"]
[dependencies.winapi]
version = "0.3.6"
features = ["errhandlingapi", "minwindef", "winnt", "winevt", "libloaderapi", "synchapi", "winbase", "handleapi"]
[features]
default = ["xml"]
xml = ["serde", "quick-xml"]
subscriber = []
[dev-dependencies]
chrono = "^0.4.38"