Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

clean up json handling #390

Merged
merged 15 commits into from
Mar 6, 2024
Merged
Show file tree
Hide file tree
Changes from 14 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
171 changes: 156 additions & 15 deletions Cargo.lock

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

7 changes: 7 additions & 0 deletions deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,7 @@ allow-registry = ["https://github.com/rust-lang/crates.io-index"]
allow-git = [
# TODO: remove this
"https://github.com/Barandis/qd",
"https://github.com/martian-lang/martian-rust",
]

[sources.allow-org]
Expand All @@ -139,3 +140,9 @@ github = ["10XGenomics"]
gitlab = []
# 1 or more bitbucket.org organizations to allow git sources for
bitbucket = []


[[bans.skip]]
# many packages depend on syn 1
name = "syn"
version = "1.0.105"
2 changes: 2 additions & 0 deletions enclone_args/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,14 @@ evalexpr = ">=7, <12"
expr_tools = { path = "../expr_tools" }
io_utils = { path = "../io_utils" }
itertools.workspace = true
martian-filetypes = { git = "https://github.com/martian-lang/martian-rust", branch = "master" }
rand = "0.8"
rayon = "1"
regex = { version = "1", default-features = false, features = ["std", "perf"] }
serde_json = "1"
string_utils = { path = "../string_utils" }
vdj_ann = { path = "../vdj_ann" }
vdj_types = { path = "../vdj_types" }
vector_utils = { path = "../vector_utils" }

[target.'cfg(not(windows))'.dependencies.hdf5]
Expand Down
Loading
Loading