Rust编写的JavaScript引擎,该项目是一个试验性质的项目。
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
951 B

[package]
name = "boa_icu_provider"
description = "ICU4X data provider for the Boa JavaScript engine."
keywords = ["javascript", "cldr", "unicode"]
categories = ["internationalization"]
version.workspace = true
edition.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
rust-version.workspace = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
icu_provider = { version = "1.0.1", features = ["serde", "sync"] }
icu_provider_blob = "1.0.0"
icu_provider_adapters = { version = "1.0.0", features = ["serde"]}
icu_datagen = { version = "1.0.2", optional = true }
log = { version = "0.4.17", optional = true }
simple_logger = { version = "4.0.0", optional = true }
Bump once_cell from 1.16.0 to 1.17.0 (#2510) Bumps [once_cell](https://github.com/matklad/once_cell) from 1.16.0 to 1.17.0. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/matklad/once_cell/blob/master/CHANGELOG.md">once_cell's changelog</a>.</em></p> <blockquote> <h2>1.17.0</h2> <ul> <li>Add <code>race::OnceRef</code> for storing a <code>&amp;'a T</code>.</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/matklad/once_cell/commit/85e372f818fc07c3688ef431b8735778b4b9430b"><code>85e372f</code></a> Merge <a href="https://github-redirect.dependabot.com/matklad/once_cell/issues/213">#213</a></li> <li><a href="https://github.com/matklad/once_cell/commit/fae9f73da65a92812ff96aadb18edb98af4a3d43"><code>fae9f73</code></a> Add once_cell::race::OnceRef</li> <li><a href="https://github.com/matklad/once_cell/commit/0d0dae126032926487314301b1a190447a66ebbc"><code>0d0dae1</code></a> Merge <a href="https://github-redirect.dependabot.com/matklad/once_cell/issues/212">#212</a></li> <li><a href="https://github.com/matklad/once_cell/commit/e94003a2993923601cac5c1ba0b6988e13a6af39"><code>e94003a</code></a> Removed Debug impls to de-clutter example</li> <li><a href="https://github.com/matklad/once_cell/commit/3f750e1b6ba6bb2395574d24645fa2c36b8e92ab"><code>3f750e1</code></a> Fixed <code>LateInit</code> example stack overflow</li> <li><a href="https://github.com/matklad/once_cell/commit/ba8b9fe98b1a61bfda3ef512b582180fe230f292"><code>ba8b9fe</code></a> Merge <a href="https://github-redirect.dependabot.com/matklad/once_cell/issues/209">#209</a></li> <li><a href="https://github.com/matklad/once_cell/commit/ea438d8e50011f9b422bf1308fbb40f6e01fe2ba"><code>ea438d8</code></a> Merge <a href="https://github-redirect.dependabot.com/matklad/once_cell/issues/210">#210</a></li> <li><a href="https://github.com/matklad/once_cell/commit/f68835a884c3cdfac5fb4e1c3cc2ff3d7d8703c4"><code>f68835a</code></a> fix miri tests</li> <li><a href="https://github.com/matklad/once_cell/commit/6d46f401f72f5a476e5b4dd3e6fa6a44eca9824e"><code>6d46f40</code></a> Add references to generic_once_cell</li> <li><a href="https://github.com/matklad/once_cell/commit/47bf9ae9941c43109b703cb692b47d82360e8914"><code>47bf9ae</code></a> Readme: Sync related crates to docs</li> <li>See full diff in <a href="https://github.com/matklad/once_cell/compare/v1.16.0...v1.17.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=once_cell&package-manager=cargo&previous-version=1.16.0&new-version=1.17.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details>
2 years ago
once_cell = "1.17.0"
[features]
bin = ["dep:icu_datagen", "dep:simple_logger", "dep:log"]
[[bin]]
name = "boa-datagen"
path = "src/bin/datagen.rs"
required-features = ["bin"]