forked from oscar-project/oscar-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
68 lines (59 loc) · 1.51 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
[package]
authors = [
"Pedro J. Ortiz <pedro@pjortiz.com>",
"Julien Abadji <aulien.jbadji@gmail.com>",
]
edition = "2021"
name = "oscar-tools"
version = "0.4.0"
repository = "https://github.com/cisnlp/oscar-tools"
description = "Tools for processing GlotCC/OSCAR Corpora"
license = "Apache-2.0"
[[bin]]
name = "oscar-tools"
path = "src/main.rs"
[lib]
name = "oscar_tools"
path = "src/lib.rs"
[features]
zstd = ["dep:zstd"]
[dependencies]
env_logger = "0.9.0"
flate2 = "1.0.22"
itertools = "0.11.0"
log = "0.4.14"
oscar-io = { git = "https://github.com/cisnlp/oscar-io.git", branch = "main" }
rand = "0.8.5"
rayon = "1.5.1"
runiq-lib = "1.2.2"
serde_json = "1.0.78"
sha2 = "0.10.1"
zstd = { version = "0.11.2", optional = true }
walkdir = "2.3.3"
[dependencies.clap]
features = ["derive"]
version = "3.0.14"
[dev-dependencies]
oscar-io = { git = "https://github.com/cisnlp/oscar-io.git", branch = "main" }
tempfile = "3.3.0"
[profile.release]
debug = true
# The profile that 'cargo dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"
# Config for 'cargo dist'
[workspace.metadata.dist]
# The preferred cargo-dist version to use in CI (Cargo.toml SemVer syntax)
cargo-dist-version = "0.1.0"
# CI backends to support (see 'cargo dist generate-ci')
ci = ["github"]
# The installers to generate for each app
installers = []
# Target platforms to build apps for (Rust target-triple syntax)
targets = [
"x86_64-unknown-linux-gnu",
"x86_64-apple-darwin",
"x86_64-pc-windows-msvc",
"aarch64-apple-darwin",
]