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>" ]
2019-04-14 21:54:32 +03:00
edition = "2018"
2018-05-31 23:31:22 +03:00
[ dependencies ]
2020-12-07 18:35:43 +03:00
anyhow = "1.0.35"
2020-12-09 00:35:24 +03:00
serde = "1.0.118"
2020-12-09 01:57:50 +03:00
serde_derive = "1.0.118"
2020-12-08 02:04:18 +03:00
serde_json = "1.0.60"
2020-11-02 09:51:21 +03:00
serde_yaml = "0.8.14"
2020-12-07 16:17:25 +03:00
libc = "0.2.81"
2020-11-30 09:29:52 +03:00
nix = "0.19.1"
2020-09-21 10:22:04 +03:00
glib-sys = "0.10.1"
2020-10-19 17:58:26 +03:00
glib = "0.10.3"
gio-sys = "0.10.1"
gio = "0.9.1"
ostree = { version = "0.9.1" , features = [ "v2020_4" ] }
ostree-sys = "0.7.1"
tempfile = "3.1.0"
clap = "2.33.3"
2020-12-09 00:33:37 +03:00
structopt = "0.3.21"
2020-06-15 21:32:40 +03:00
openat = "0.1.19"
2020-11-16 09:32:48 +03:00
openat-ext = "^0.1.9"
2020-10-19 17:58:26 +03:00
curl = "0.4.34"
2020-10-26 09:32:58 +03:00
rayon = "1.5.0"
2018-09-27 16:31:50 +03:00
c_utf8 = "0.1.0"
2020-08-17 21:12:29 +03:00
rand = "0.7.3"
2020-11-16 09:32:42 +03:00
systemd = "0.8.1"
2020-06-15 12:31:43 +03:00
indicatif = "0.15.0"
2020-10-19 17:58:26 +03:00
lazy_static = "1.4.0"
2020-04-06 17:53:34 +03:00
envsubst = "0.2.0"
2020-10-30 21:43:35 +03:00
subprocess = "0.2.6"
2020-10-05 10:19:54 +03:00
chrono = { version = "0.4.19" , features = [ "serde" ] }
2020-12-08 21:29:05 +03:00
libdnf-sys = { path = "rust/libdnf-sys" , version = "0.1.0" }
2018-05-31 23:31:22 +03:00
[ lib ]
2018-07-04 21:50:40 +03:00
name = "rpmostree_rust"
2020-12-08 21:29:05 +03:00
path = "rust/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
2020-10-28 23:06:26 +03:00
# We need this to avoid leaking symbols, see
# https://internals.rust-lang.org/t/rust-staticlibs-and-optimizing-for-size/5746
lto = true
2020-12-22 01:27:52 +03:00
[ features ]
sqlite-rpmdb-default = [ ]
default = [ ]