gecko-dev/intl/encoding_glue/Cargo.toml
Mike Hommey aada68ea09 Bug 1924664 - Fix Cargo.toml-related warnings from first-party crates. r=firefox-build-system-reviewers,necko-reviewers,profiler-reviewers,aabh,ahochheiden
The warnings are:

  no edition set: defaulting to the 2015 edition while the latest is 2021
  unused manifest key: lib.plugin

Differential Revision: https://phabricator.services.mozilla.com/D226855
2024-10-28 20:56:36 +00:00

17 lines
477 B
TOML

[package]
edition = "2015"
name = "encoding_glue"
description = "FFI functions for mozilla::Encoding that aren't appropriate to share on crates.io due to m-c dependencies"
version = "0.1.0"
authors = ["Henri Sivonen <hsivonen@hsivonen.fi>"]
license = "MIT OR Apache-2.0"
[features]
simd-accel = ["encoding_rs/simd-accel"]
[dependencies]
encoding_rs = "0.8.0"
nsstring = { path = "../../xpcom/rust/nsstring" }
nserror = { path = "../../xpcom/rust/nserror" }
xmldecl = "0.2.0"