2018-05-31 23:31:22 +03:00
[ package ]
2018-07-04 21:50:40 +03:00
name = "rpmostree-rust"
2018-05-31 23:31:22 +03:00
version = "0.1.0"
2018-10-05 19:57:00 +03:00
authors = [ "Colin Walters <walters@verbum.org>" , "Jonathan Lebon <jonathan@jlebon.com>" ]
2018-05-31 23:31:22 +03:00
[ dependencies ]
2018-11-13 23:34:38 +03:00
failure = "0.1.3"
2018-09-12 17:11:33 +03:00
serde = "1.0.78"
serde_derive = "1.0.78"
2018-05-31 23:31:22 +03:00
serde_json = "1.0"
2018-12-19 23:33:17 +03:00
serde_yaml = "0.8"
2018-05-31 23:31:22 +03:00
libc = "0.2"
2019-04-03 18:35:04 +03:00
glib-sys = "0.8.0"
gio-sys = "0.8.0"
glib = "0.7.1"
2018-07-28 00:36:34 +03:00
tempfile = "3.0.3"
2019-03-01 18:19:01 +03:00
clap = "~2.32"
2018-07-27 21:16:05 +03:00
openat = "0.1.15"
2018-08-18 00:34:02 +03:00
curl = "0.4.14"
2019-01-07 20:49:31 +03:00
rayon = "1.0"
2018-09-27 16:31:50 +03:00
c_utf8 = "0.1.0"
2018-10-25 21:52:12 +03:00
systemd = "0.4.0"
2019-03-01 18:19:01 +03:00
indicatif = "0.11.0"
2018-10-23 17:31:57 +03:00
lazy_static = "1.1.0"
2018-05-31 23:31:22 +03:00
[ lib ]
2018-07-04 21:50:40 +03:00
name = "rpmostree_rust"
2018-07-04 22:17:51 +03:00
path = "src/lib.rs"
2018-05-31 23:31:22 +03:00
crate-type = [ "staticlib" ]
[ profile . release ]
2018-11-05 18:50:24 +03:00
# Unwinding across FFI boundaries is undefined behavior, and anyways, we're
# [crash-only](https://en.wikipedia.org/wiki/Crash-only_software)
2018-05-31 23:31:22 +03:00
panic = "abort"
2018-11-05 18:50:24 +03:00
# We assume we're being delivered via e.g. RPM which supports split debuginfo
2018-09-10 20:50:24 +03:00
debug = true
2018-11-05 18:50:24 +03:00
# For true release builds, we do suggest you enable LTO via e.g.
# env RUSTFLAGS='-C lto=true' as part of the outer build. It's just
# off by default because it's quite slow and the default is more oriented
# towards local development.