-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
38 lines (33 loc) · 999 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
[package]
name = "ro-crate-rs"
version = "0.4.10"
edition = "2021"
repository = "https://github.com/intbio-ncl/ro-crate-rs"
authors = ["Matt Burridge <m.burridge1@newcastle.ac.uk>"]
autoexamples = false
license = "Apache-2.0"
description = "Library for creating, modifying and reading RO-Crates"
keywords = ["researchobject","ro-crate","ro","metadata","jsonld"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "rocraters"
path = "src/lib.rs"
doctest = false
[workspace]
members = [
"cli",
]
[dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
chrono = { version = "0.4.31", features = ["serde"]}
uuid = { version = "1.0", features = ["v4", "v7"] }
rand = "0.8"
url = "2.2"
zip = "0.6.6"
walkdir = "2"
reqwest = { version = "0.11", features = ["blocking", "json"], default-features = false}
dirs = "6.0.0"
polars = {version = "0.45.1", features =["parquet"]}
[dev-dependencies]
tempfile = "3.9"