mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-23 21:01:08 +00:00
aada68ea09
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
17 lines
477 B
TOML
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"
|