Skip to content

Commit

Permalink
Disable default features for all packages
Browse files Browse the repository at this point in the history
  • Loading branch information
chmp committed Jan 6, 2024
1 parent 89cca05 commit 22c6459
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions serde_arrow/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,11 @@ arrow-38 = ["dep:arrow-array-38", "dep:arrow-schema-38", "dep:arrow-data-38", "d
arrow-37 = ["dep:arrow-array-37", "dep:arrow-schema-37", "dep:arrow-data-37", "dep:arrow-buffer-37"]

[dependencies]
bytemuck = "1"
bytemuck = { version = "1", default-features = false }
# TODO: make optional, only required for str -> date conversions
chrono = "0.4"
half = { version = "2", features = ["bytemuck"] }
serde = { version = "1.0", features = ["derive"] }
chrono = { version = "0.4", default-features = false }
half = { version = "2", features = ["bytemuck"], default-features = false }
serde = { version = "1.0", features = ["derive", "std"], default-features = false }

# arrow-version:insert: arrow-array-{version} = {{ package = "arrow-array", version = "{version}", optional = true, default-features = false }}
arrow-array-49 = { package = "arrow-array", version = "49", optional = true, default-features = false }
Expand Down Expand Up @@ -111,13 +111,13 @@ arrow2-0-16 = { package = "arrow2", version = "0.16", optional = true, default-f

[dev-dependencies]
anyhow = "1"
chrono = { version = "0.4", features = ["serde"] }
serde = { version = "1", features = ["derive"] }
chrono = { version = "0.4", features = ["serde"], default-features = false }
serde = { version = "1", features = ["derive", "std"], default-features = false }
serde_json = "1"
rand = "0.8"

# for benchmarks
# arrow-version:replace: arrow-json-{version} = {{ package = "arrow-json", version = "{version}" }}
arrow-json-49 = { package = "arrow-json", version = "49" }
criterion = "0.4"
arrow2_convert = "0.5.0"
arrow2_convert = "0.5.0"

0 comments on commit 22c6459

Please sign in to comment.