-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ADD: Add support for custom delimiter to DBN
- Loading branch information
1 parent
e55530f
commit d74671e
Showing
12 changed files
with
357 additions
and
141 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,3 +7,11 @@ members = [ | |
"rust/dbn" | ||
] | ||
resolver = "2" | ||
|
||
[workspace.package] | ||
authors = ["Databento <[email protected]>"] | ||
edition = "2021" | ||
version = "0.15.1" | ||
documentation = "https://docs.databento.com" | ||
repository = "https://github.com/databento/dbn" | ||
license = "Apache-2.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
[package] | ||
name = "dbn-c" | ||
authors = ["Databento <[email protected]>"] | ||
version = "0.15.0" | ||
edition = "2021" | ||
description = "C bindings for working with Databento Binary Encoding (DBN)" | ||
license = "Apache-2.0" | ||
repository = "https://github.com/databento/dbn" | ||
# This crate should not be published | ||
publish = false | ||
authors.workspace = true | ||
version.workspace = true | ||
edition.workspace = true | ||
license.workspace = true | ||
repository.workspace = true | ||
|
||
[lib] | ||
name = "dbn_c" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
[package] | ||
name = "databento-dbn" | ||
authors = ["Databento <[email protected]>"] | ||
version = "0.15.1" | ||
edition = "2021" | ||
description = "Python library written in Rust for working with Databento Binary Encoding (DBN)" | ||
license = "Apache-2.0" | ||
repository = "https://github.com/databento/dbn" | ||
# This crate should only be published as a Python package | ||
publish = false | ||
authors.workspace = true | ||
version.workspace = true | ||
edition.workspace = true | ||
license.workspace = true | ||
repository.workspace = true | ||
|
||
[lib] | ||
name = "databento_dbn" # Python modules can't contain dashes | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
[package] | ||
name = "dbn-cli" | ||
authors = ["Databento <[email protected]>"] | ||
version = "0.15.1" | ||
edition = "2021" | ||
description = "Command-line utility for converting Databento Binary Encoding (DBN) files to text-based formats" | ||
default-run = "dbn" | ||
license = "Apache-2.0" | ||
repository = "https://github.com/databento/dbn" | ||
keywords = ["market-data", "json", "csv", "conversion", "encoding"] | ||
# see https://crates.io/category_slugs | ||
categories = ["command-line-utilities", "encoding"] | ||
authors.workspace = true | ||
version.workspace = true | ||
edition.workspace = true | ||
license.workspace = true | ||
repository.workspace = true | ||
|
||
[[bin]] | ||
name = "dbn" | ||
|
@@ -25,6 +25,7 @@ anyhow = "1.0" | |
clap = { version = "4.4", features = ["derive", "wrap_help"] } | ||
# deserialization for CLI args | ||
serde = { version = "1.0", features = ["derive"] } | ||
# Compression | ||
zstd = "0.13" | ||
|
||
[dev-dependencies] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
[package] | ||
name = "dbn-macros" | ||
authors = ["Databento <[email protected]>"] | ||
version = "0.15.1" | ||
edition = "2021" | ||
description = "Proc macros for dbn crate" | ||
license = "Apache-2.0" | ||
repository = "https://github.com/databento/dbn" | ||
authors.workspace = true | ||
version.workspace = true | ||
edition.workspace = true | ||
license.workspace = true | ||
repository.workspace = true | ||
|
||
[lib] | ||
proc-macro = true | ||
|
Oops, something went wrong.