-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
23 lines (20 loc) · 852 Bytes
/
Cargo.toml
File metadata and controls
23 lines (20 loc) · 852 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[package]
name = "afrim-py"
version = "0.1.0"
edition = "2021"
[lib]
name = "afrim_py"
crate-type = ["cdylib"]
[features]
default = ["rhai", "strsim"]
strsim = ["afrim-translator/strsim"]
rhai = ["afrim-translator/rhai", "afrim-config/rhai"]
[dependencies]
pyo3 = { version = "0.20.3", features = ["extension-module"] }
pythonize = "0.20"
indexmap = "2.11.4"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
afrim-preprocessor = { version = "0.6.3", default-features = false, features = ["serde"], git = "https://github.com/fodydev/afrim", rev = "16ade83" }
afrim-translator = { version = "0.2.3", default-features = false, features = ["serde"], git = "https://github.com/fodydev/afrim", rev = "16ade83" }
afrim-config = { version = "0.4.7", default-features = false, git = "https://github.com/fodydev/afrim", rev = "16ade83" }