diff options
Diffstat (limited to 'toolkit/library/rust')
-rw-r--r-- | toolkit/library/rust/Cargo.lock | 4 | ||||
-rw-r--r-- | toolkit/library/rust/shared/Cargo.toml | 3 | ||||
-rw-r--r-- | toolkit/library/rust/shared/lib.rs | 1 |
3 files changed, 0 insertions, 8 deletions
diff --git a/toolkit/library/rust/Cargo.lock b/toolkit/library/rust/Cargo.lock index 5ab22840a..ae9d84eed 100644 --- a/toolkit/library/rust/Cargo.lock +++ b/toolkit/library/rust/Cargo.lock @@ -38,10 +38,6 @@ version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] -name = "nsstring" -version = "0.1.0" - -[[package]] name = "unicode-bidi" version = "0.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" diff --git a/toolkit/library/rust/shared/Cargo.toml b/toolkit/library/rust/shared/Cargo.toml index 4b94a1c94..d4b57dd10 100644 --- a/toolkit/library/rust/shared/Cargo.toml +++ b/toolkit/library/rust/shared/Cargo.toml @@ -5,9 +5,6 @@ authors = ["nobody@mozilla.org"] license = "MPL-2.0" description = "Shared Rust code for libxul" -[dependencies] -nsstring = { path = "../../../../xpcom/rust/nsstring" } - [lib] path = "lib.rs" test = false diff --git a/toolkit/library/rust/shared/lib.rs b/toolkit/library/rust/shared/lib.rs index f6d7a5ae0..6fbb80a0b 100644 --- a/toolkit/library/rust/shared/lib.rs +++ b/toolkit/library/rust/shared/lib.rs @@ -2,4 +2,3 @@ // License, v. 2.0. If a copy of the MPL was not distributed with this // file, You can obtain one at http://mozilla.org/MPL/2.0/. -extern crate nsstring; |