Skip to content

Commit

Permalink
Run 2 ICU4X versions: 1.3 and 1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
sven-oly committed Nov 20, 2023
1 parent ac63cde commit 39f254e
Show file tree
Hide file tree
Showing 16 changed files with 1,685 additions and 223 deletions.
134 changes: 103 additions & 31 deletions executors/rust/Cargo.lock → executors/rust/1.3/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

30 changes: 30 additions & 0 deletions executors/rust/1.3/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
[package]
name = "executor"

version = "0.1.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
log = "0.4"
env_logger = "0.9.1"

substring = "1.0"
json = "0.12.4"
serde = {version = "1.0.171", features = ["derive", "alloc"]}
serde_json = "1.0.100"
rustc_version_runtime = "0.1.*"

fixed_decimal = {version="0.5.3"}
writeable = {version="0.5.2"}

icu = {version="~1.3", features = ["serde", "icu_compactdecimal", "icu_displaynames"] }
icu_testdata = {version="~1.3", features = ["icu_compactdecimal", "icu_displaynames"]}
icu_provider = {version="~1.3", features=["macros"]}
icu_datagen = { version = "~1.3", default-features = false }

databake = { version = "0.1.3", features = ["derive"], optional = true}
zerovec = { version = "0.10.0", features = ["yoke"] }

[features]
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,8 @@ pub fn run_collation_test(json_obj: &Value) -> Result<Value, String> {
let json_result = json!({
"label": label,
"result": result_string,
"compare_result": comparison_number
"compare_result": comparison_number,
"actual_options": format!("{options:?}")
});
Ok(json_result)
}
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Loading

0 comments on commit 39f254e

Please sign in to comment.