-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
66 lines (58 loc) · 1.66 KB
/
Cargo.toml
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[workspace]
resolver = "2"
members = [
"server",
"wsdl_rs/devicemgmt",
"wsdl_rs/imaging",
"wsdl_rs/media",
"wsdl_rs/event",
"xsd_rs/onvif",
# Following are the 5 dependencies for onvif.xsd
"xsd_rs/common",
"xsd_rs/xmlmime",
"xsd_rs/soapenv",
"xsd_rs/b2",
"xsd_rs/t1",
"xsd_rs/ws_addr",
"xsd_rs/xop",
"validate",
"a12n",
"soap-fault"
]
exclude = [
"build_scripts/xml-to-rs",
"integration_testing"
]
[workspace.package]
authors = ["Martin Cowie"]
version = "0.1.0"
edition = "2021"
readme = "./README.md"
repository = "https://github.com/martin-cowie/pepys"
[workspace.dependencies]
chrono = "0.4.22"
# get_if_addrs = "0.5.3"
hyper = { version = "0.14.20", features = ["server", "stream", "http1", "tcp"] }
libc-strftime = "0.2.0"
# network-interface = "0.1.3"
static_init = "1.0.3"
tokio = { version = "1.21.1", default-features = false, features = ["rt", "macros", "rt-multi-thread", "process", "io-util"] }
tracing = "0.1.36"
tracing-subscriber = "0.3.15"
uuid = { version = "1.1.2", features = ["v4"] }
xml-rs = "0.8.3"
xsd-macro-utils = { git = "https://github.com/lumeohq/xsd-parser-rs", rev = "7f3d433" }
xsd-types = { git = "https://github.com/lumeohq/xsd-parser-rs", rev = "7f3d433" } # TODO: get a specific revision
yaserde = "0.7.1" # TODO: bring this upto date - Specific version required by xsd-types
yaserde_derive = "0.7.1"
regex = "1"
serde = "1.0.147"
serde_derive = "1.0.147"
toml = "0.5.9"
nix = {version = "0.26.1", features = ["net"]}
[profile.release]
strip = true # Automatically strip symbols from the binary.
opt-level = "z" # Optimize for size.
lto = true
codegen-units = 1
panic = "abort"