Skip to content

Commit

Permalink
Cleanup.
Browse files Browse the repository at this point in the history
  • Loading branch information
finnbear committed Sep 20, 2024
1 parent ca58c66 commit b1ef4d8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ arrayvec = { version = "0.7", default-features = false, optional = true }
bitcode_derive = { version = "0.6.3", path = "./bitcode_derive", optional = true }
bytemuck = { version = "1.14", features = [ "min_const_generics", "must_cast" ] }
glam = { version = ">=0.21", default-features = false, optional = true }
rust_decimal = { version = "1.36.0", default-features = false, optional = true }
rust_decimal = { version = "1.36", default-features = false, optional = true }
serde = { version = "1.0", default-features = false, features = [ "alloc" ], optional = true }

[dev-dependencies]
Expand Down Expand Up @@ -49,4 +49,4 @@ features = [ "derive", "serde", "std" ]
#lto = true

[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(fuzzing)'] }
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(fuzzing)'] }
2 changes: 1 addition & 1 deletion fuzz/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ members = ["."]
name = "fuzz"
path = "fuzz_targets/fuzz.rs"
test = false
doc = false
doc = false
1 change: 1 addition & 0 deletions src/ext/rust_decimal.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ impl ConvertFrom<DecimalConversion> for Decimal {
impl Encode for Decimal {
type Encoder = convert::ConvertIntoEncoder<DecimalConversion>;
}

impl<'a> Decode<'a> for Decimal {
type Decoder = convert::ConvertFromDecoder<'a, DecimalConversion>;
}
Expand Down

0 comments on commit b1ef4d8

Please sign in to comment.