cargo: point to docs.rs and clean up
This removes stale URLs, pointing to the auto-built docpages at docs.rs and sorting manifest entries.
This commit is contained in:
parent
20a025a0eb
commit
fdfaea1864
|
|
@ -1,16 +1,14 @@
|
||||||
[package]
|
[package]
|
||||||
name = "ostree"
|
|
||||||
version = "0.12.0"
|
|
||||||
authors = ["Felix Krull"]
|
authors = ["Felix Krull"]
|
||||||
edition = "2018"
|
|
||||||
|
|
||||||
license = "MIT"
|
|
||||||
description = "Rust bindings for libostree"
|
description = "Rust bindings for libostree"
|
||||||
|
documentation = "https://docs.rs/ostree"
|
||||||
|
edition = "2018"
|
||||||
keywords = ["ostree", "libostree"]
|
keywords = ["ostree", "libostree"]
|
||||||
|
license = "MIT"
|
||||||
documentation = "https://fkrull.gitlab.io/ostree-rs/ostree"
|
name = "ostree"
|
||||||
repository = "https://gitlab.com/fkrull/ostree-rs"
|
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
|
repository = "https://github.com/ostreedev/ostree-rs"
|
||||||
|
version = "0.12.0"
|
||||||
|
|
||||||
exclude = [
|
exclude = [
|
||||||
"conf/**",
|
"conf/**",
|
||||||
|
|
@ -23,9 +21,6 @@ exclude = [
|
||||||
[package.metadata.docs.rs]
|
[package.metadata.docs.rs]
|
||||||
features = ["dox"]
|
features = ["dox"]
|
||||||
|
|
||||||
[badges.gitlab]
|
|
||||||
repository = "fkrull/ostree-rs"
|
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
name = "ostree"
|
name = "ostree"
|
||||||
|
|
||||||
|
|
@ -33,17 +28,17 @@ name = "ostree"
|
||||||
members = [".", "sys"]
|
members = [".", "sys"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
libc = "0.2"
|
|
||||||
bitflags = "1.2.1"
|
bitflags = "1.2.1"
|
||||||
glib = "0.14.0"
|
ffi = { package = "ostree-sys", path = "sys", version = "0.8.0" }
|
||||||
gio = "0.14.0"
|
gio = "0.14.0"
|
||||||
|
gio-sys = "0.14.0"
|
||||||
|
glib = "0.14.0"
|
||||||
glib-sys = "0.14.0"
|
glib-sys = "0.14.0"
|
||||||
gobject-sys = "0.14.0"
|
gobject-sys = "0.14.0"
|
||||||
gio-sys = "0.14.0"
|
|
||||||
once_cell = "1.4.0"
|
|
||||||
ffi = { package = "ostree-sys", path = "sys", version = "0.8.0" }
|
|
||||||
radix64 = "0.6.2"
|
|
||||||
hex = "0.4.2"
|
hex = "0.4.2"
|
||||||
|
libc = "0.2"
|
||||||
|
once_cell = "1.4.0"
|
||||||
|
radix64 = "0.6.2"
|
||||||
thiserror = "1.0.20"
|
thiserror = "1.0.20"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue