Skip to content

Commit

Permalink
DurationFormatter: Remove allocations (#5383)
Browse files Browse the repository at this point in the history
  • Loading branch information
kartva authored Aug 21, 2024
1 parent 96224c3 commit 8adbf92
Show file tree
Hide file tree
Showing 4 changed files with 143 additions and 169 deletions.
1 change: 1 addition & 0 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -235,6 +235,7 @@ diplomat-tool = { git = "https://github.com/rust-diplomat/diplomat", rev = "2913
# EXTRA_CAPI_DEPS
# EXTRA_BLOB_DEPS
# EXTRA_FS_DEPS
arrayvec = { version = "0.7.2", default-features = false }
core_maths = { version = "0.1.0", default-features = false }
displaydoc = { version = "0.2.3", default-features = false }
either = { version = "1.9.0", default-features = false }
Expand Down Expand Up @@ -263,7 +264,6 @@ serde-aux = { version = "4.0.0", default-features = false }

## External Deps Group 3: Dev and Datagen deps. Include default features.
arraystring = "0.3.0"
arrayvec = "0.7.2"
atoi = "1.0.0"
bincode = "1.3.1"
clap = "4.2.0"
Expand Down
3 changes: 2 additions & 1 deletion components/experimental/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ icu_plurals = { workspace = true }
icu_properties = { workspace = true }

databake = { workspace = true, optional = true, features = ["derive"] }
either = { workspace = true }
fixed_decimal = { workspace = true }
icu_pattern = { workspace = true , features = ["alloc", "yoke", "zerofrom"]}
litemap = { workspace = true }
Expand All @@ -52,7 +53,7 @@ num-bigint = { workspace = true }
num-rational = { workspace = true, features = ["num-bigint"]}
num-traits = { workspace = true }
serde = { workspace = true, features = ["derive", "alloc"], optional = true }
smallvec = { workspace = true }
smallvec = { workspace = true, features = ["const_generics"] }

icu_experimental_data = { workspace = true, optional = true }

Expand Down
Loading

0 comments on commit 8adbf92

Please sign in to comment.