-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
63 lines (53 loc) · 1.62 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
[package]
name = "parasite"
version = "0.3.0"
authors = ["peta <peta.maj82@gmail.com>"]
edition = "2018"
# Datastore access and merging API to be used from other rust programs (namely djanco).
[lib]
name = "parasite"
path = "src/lib.rs"
# The actual parasite executable that runs the incremental downloader and deals with datastore updates.
[[bin]]
name = "parasite"
path = "src/main.rs"
# Basic viewer and commandline interface to a parasite datastore.
[[bin]]
name = "mistletoe"
path = "src/mistletoe.rs"
# Github project scrapper (downloads project urls from GH directly, bypassing GHT)
[[bin]]
name = "scrapper"
path = "src/scrapper.rs"
# Takes the input from the project url scrapper and starts randomly selecting projects and getting their metadata, such as language
[[bin]]
name = "metadata-scrapper"
path = "src/metadata_scrapper.rs"
# Helper application that provides some basic filtering of project URLs from GHTorrent data as seeding urls for the parasite downloader.
[[bin]]
name = "ght-filter"
path = "src/ght_filter.rs"
# Helper commands for the ECOOP 2021 artifact of the our CodeDJ paper. For more details, see the artifact repository at https://github.com/PRL-PRG/codedj-ecoop-artifact
[[bin]]
name = "ecoop-artifact"
path = "src/ecoop_artifact.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
git2="0.13"
csv="1.1"
crossbeam="0.7"
crossbeam-channel="0.5.0"
curl="0.4"
json="0.12"
chrono="0.4"
byteorder="1.3.4"
rand="0.7"
sha-1="0.9"
flate2="1.0"
num = "0.3"
num-derive = "0.3"
num-traits = "0.2"
lazy_static = "1.4.0"
clap = "2.33.3"
[profile.release]
debug = true