termux-packages/packages/newsboat/rust-libnewsboat-Cargo.toml...

27 lines
912 B
Diff
Raw Normal View History

2020-10-22 00:37:58 +02:00
diff -u -r ../newsboat-2.21/rust/libnewsboat/Cargo.toml ./rust/libnewsboat/Cargo.toml
--- ../newsboat-2.21/rust/libnewsboat/Cargo.toml 2020-09-20 19:14:02.000000000 +0000
+++ ./rust/libnewsboat/Cargo.toml 2020-10-21 22:26:52.328755304 +0000
@@ -18,8 +18,7 @@
unicode-width = "0.1.8"
2020-08-12 10:26:50 +02:00
nom = "5"
curl-sys = "0.4.5"
2020-10-22 00:37:58 +02:00
-libc = "0.2"
-gettext-rs = "0.5.0"
+libc = { git = "https://github.com/fornwall/libc", branch = "android-lockf-operations" }
2020-08-12 10:26:50 +02:00
natord = "1.0.9"
2020-10-22 00:37:58 +02:00
lazy_static = "1.4.0"
2020-08-12 10:26:50 +02:00
2020-10-22 00:37:58 +02:00
@@ -34,12 +33,6 @@
2020-08-12 10:26:50 +02:00
# I want as little dependencies as practically possible.
default-features = false
-[dependencies.gettext-sys]
2020-10-22 00:37:58 +02:00
-version = "0.19.9"
2020-08-12 10:26:50 +02:00
-# Don't let the crate build its own copy of gettext; force it to use the one
-# built into glibc.
-features = [ "gettext-system" ]
-
[dev-dependencies]
tempfile = "3"
# 0.9.6 fixes build failures on Nightly >=2020-04-08: https://github.com/newsboat/newsboat/issues/870