Skip to content

Commit

Permalink
Update ExtensionType trait to support more canonical extension types
Browse files Browse the repository at this point in the history
  • Loading branch information
mbrobbel committed Jan 17, 2025
1 parent 374d017 commit 6b883c5
Show file tree
Hide file tree
Showing 14 changed files with 2,289 additions and 332 deletions.
10 changes: 8 additions & 2 deletions arrow-schema/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,19 @@ path = "src/lib.rs"
bench = false

[dependencies]
serde = { version = "1.0", default-features = false, features = ["derive", "std", "rc"], optional = true }
serde = { version = "1.0", default-features = false, features = [
"derive",
"std",
"rc",
], optional = true }
bitflags = { version = "2.0.0", default-features = false, optional = true }
serde_json = "1.0"
serde_json = { version = "1.0", optional = true }

[features]
canonical-extension-types = ["dep:serde", "dep:serde_json"]
# Enable ffi support
ffi = ["bitflags"]
serde = ["dep:serde"]

[package.metadata.docs.rs]
features = ["ffi"]
Expand Down
Loading

0 comments on commit 6b883c5

Please sign in to comment.