702daa2335
Automake was warning about duplicate `clean-local` definitions, let's do the nonrecursive automake dance. And while I'm here, let's add some Rust unit tests that actually run on `make check` too, since the whole unit testing bits of Rust are awesome. (I also tweaked the propagate bits to use the nicer `is_null()` method) Closes: #1389 Approved by: jlebon
24 lines
375 B
TOML
24 lines
375 B
TOML
[package]
|
|
name = "treefile"
|
|
version = "0.1.0"
|
|
authors = ["Colin Walters <walters@verbum.org>"]
|
|
|
|
[dependencies]
|
|
serde = "1.0"
|
|
serde_derive = "1.0"
|
|
serde_json = "1.0"
|
|
serde_yaml = "0.7"
|
|
libc = "0.2"
|
|
glib-sys = "0.6.0"
|
|
gio-sys = "0.6.0"
|
|
glib = "0.5.0"
|
|
|
|
[lib]
|
|
name = "treefile_rs"
|
|
path = "src/treefile.rs"
|
|
crate-type = ["staticlib"]
|
|
|
|
[profile.release]
|
|
panic = "abort"
|
|
lto = true
|