-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
29 lines (25 loc) · 893 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
[package]
name = "syntaxdot-python"
version = "0.1.0"
authors = ["Daniël de Kok <[email protected]>"]
edition = "2018"
[dependencies]
conllu = "0.6"
itertools = "0.8"
serde_yaml = "0.8"
syntaxdot = { git = "https://github.com/tensordot/syntaxdot.git", branch = "main" }
syntaxdot-encoders = { git = "https://github.com/tensordot/syntaxdot.git", branch = "main" }
syntaxdot-tch-ext = { git = "https://github.com/tensordot/syntaxdot.git", branch = "main" }
syntaxdot-tokenizers = { git = "https://github.com/tensordot/syntaxdot.git", branch = "main" }
syntaxdot-transformers = { git = "https://github.com/tensordot/syntaxdot.git", branch = "main" }
tch = "0.4"
thiserror = "1"
udgraph = "0.6"
[lib]
name = "syntaxdot"
crate-type = ["cdylib"]
[dependencies.pyo3]
version = "0.13.1"
features = ["extension-module"]
[patch.crates-io]
tch = { git = "https://github.com/LaurentMazare/tch-rs.git" }