-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathCargo.toml
64 lines (51 loc) · 918 Bytes
/
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
[package]
name = "gnss-converters"
version = "1.0.0"
authors = ["Swift Navigation <[email protected]>"]
edition = "2018"
build = "rust/build.rs"
[[bin]]
name = "rtcm3tosbp"
path = "rust/rtcm3tosbp.rs"
[[bin]]
name = "ubx2sbp"
path = "rust/ubx2sbp.rs"
[[bin]]
name = "sbp2rtcm"
path = "rust/sbp2rtcm.rs"
[[bin]]
name = "ixcom2sbp"
path = "rust/ixcom2sbp.rs"
[[bin]]
name = "nov2sbp"
path = "rust/nov2sbp.rs"
required-features = ["nov2sbp"]
[[test]]
name = "integration"
path = "rust/tests/lib.rs"
[lib]
name = "gnss_converters"
path = "rust/lib.rs"
[features]
default = []
nov2sbp = []
[dependencies]
libc = "0.2"
lazy_static = "1"
if_chain = "1"
[build-dependencies]
num_cpus = "1"
cmake = "0.1"
cc = "1.0"
[dev-dependencies]
assert_cmd = "2.0.1"
predicates = "2.0.2"
sbp = "4.0"
tempfile = "3.2"
[profile.dev]
panic = "abort"
[profile.release]
panic = "abort"
opt-level = "z"
lto = true
codegen-units = 1