-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (30 loc) · 789 Bytes
/
Cargo.toml
File metadata and controls
36 lines (30 loc) · 789 Bytes
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
[package]
name = "BeagleTA"
version = "1.5.11"
edition = "2021"
categories = ["Parser"]
license = "MIT"
repository = ""
description = "BeagleTA: A text analysis processing pipeline for the analysis of relationships between documents based on word usage."
[dependencies]
clap = "4.5.26" # at dev time
colored = "3.0.0"
csv = "1.3.1"
fs = "0.0.5"
jwalk = "0.8.1"
rand = "0.8.0" # at dev time
regex = "1.11.1"
serde = {version = "1.0.218", features = ["derive"]}
serde_json = "1.0"
toml = "0.8.20"
crossbeam-channel = "0.5.15"
# Specify the binaries
[[bin]]
name = "1_beagleTA_parser"
path = "1_beagleTA_parser/src/main.rs"
[[bin]]
name = "2_csv_cleaner_filter"
path = "2_csv_cleaner_filter/src/main.rs"
[[bin]]
name = "3_csv_random_sampler"
path = "3_csv_random_sampler/src/main.rs"