aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTeddy Wing2018-11-21 09:38:42 +0100
committerTeddy Wing2018-11-21 09:38:42 +0100
commit627a486606bc5ebcb52ac417b6156bd9a0ea553e (patch)
treebfad0eea8f6d50b0477249f5788e5ad1c0b0f589
parentfbd6b49453e413bf8c9aca0944928ee6574faf28 (diff)
downloaddome-key-web-627a486606bc5ebcb52ac417b6156bd9a0ea553e.tar.bz2
aquatic-prime: Switch to my public fork of `rust-plist`
Published my local fork publicly with the base64 format change.
-rw-r--r--license-generator/Cargo.lock4
-rw-r--r--license-generator/aquatic-prime/Cargo.toml5
2 files changed, 7 insertions, 2 deletions
diff --git a/license-generator/Cargo.lock b/license-generator/Cargo.lock
index 448c2d3..245de25 100644
--- a/license-generator/Cargo.lock
+++ b/license-generator/Cargo.lock
@@ -18,7 +18,7 @@ dependencies = [
"base64 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)",
"error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)",
"openssl 0.10.15 (registry+https://github.com/rust-lang/crates.io-index)",
- "plist 0.3.0",
+ "plist 0.3.0 (git+https://github.com/teddywing/rust-plist.git?branch=data-without-base64-mime)",
"serde 1.0.80 (registry+https://github.com/rust-lang/crates.io-index)",
"serde_derive 1.0.80 (registry+https://github.com/rust-lang/crates.io-index)",
]
@@ -531,6 +531,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "plist"
version = "0.3.0"
+source = "git+https://github.com/teddywing/rust-plist.git?branch=data-without-base64-mime#497a6e3977c9a5fe1a25103b7133885f81d2b452"
dependencies = [
"base64 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)",
"byteorder 1.2.7 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -918,6 +919,7 @@ dependencies = [
"checksum openssl-sys 0.9.39 (registry+https://github.com/rust-lang/crates.io-index)" = "278c1ad40a89aa1e741a1eed089a2f60b18fab8089c3139b542140fc7d674106"
"checksum percent-encoding 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "31010dd2e1ac33d5b46a5b413495239882813e0369f8ed8a5e266f173602f831"
"checksum pkg-config 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)" = "676e8eb2b1b4c9043511a9b7bea0915320d7e502b0a079fb03f9635a5252b18c"
+"checksum plist 0.3.0 (git+https://github.com/teddywing/rust-plist.git?branch=data-without-base64-mime)" = "<none>"
"checksum podio 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "780fb4b6698bbf9cf2444ea5d22411cef2953f0824b98f33cf454ec5615645bd"
"checksum proc-macro2 0.4.20 (registry+https://github.com/rust-lang/crates.io-index)" = "3d7b7eaaa90b4a90a932a9ea6666c95a389e424eff347f0f793979289429feee"
"checksum quick-error 1.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "9274b940887ce9addde99c4eee6b5c44cc494b182b97e73dc8ffdcb3397fd3f0"
diff --git a/license-generator/aquatic-prime/Cargo.toml b/license-generator/aquatic-prime/Cargo.toml
index dd901b2..c789b33 100644
--- a/license-generator/aquatic-prime/Cargo.toml
+++ b/license-generator/aquatic-prime/Cargo.toml
@@ -5,9 +5,12 @@ version = "0.0.1"
[dependencies]
error-chain = "0.12.0"
openssl = "0.10.15"
-plist = { path = "../../../rust-plist", branch = "data-without-base64-mime" }
serde = "1.0.80"
+[dependencies.plist]
+git = "https://github.com/teddywing/rust-plist.git"
+branch = "data-without-base64-mime"
+
[dev-dependencies]
base64 = "0.10.0"
serde_derive = "1.0.80"