-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
32 lines (29 loc) · 894 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
30
31
32
[package]
name = "idf-im-lib"
version = "0.1.11"
edition = "2021"
[features]
userustpython = ["dep:rustpython-vm", "dep:rustpython-stdlib"]
[dependencies]
reqwest = "0.12.4"
tokio = { version = "1.37.0", features = ["full"] }
serde = { version = "1.0", features = ["derive"] }
serde_derive = "1.0"
serde_json = "1.0"
regex = "1.4"
colored = "2.1.0"
sys-info = "0.9.1"
decompress = "0.6.0"
git2 = "0.19.0"
sha2 = "0.10.8"
log = "0.4.21"
dirs = "5.0.1"
tera = "1.20.0"
config = "0.14.0"
toml = "0.8"
uuid = {version="1.10.0", features = ["v4"]}
tempfile = "3.2"
rustpython-vm = { git = "https://github.com/Hahihula/RustPython.git", branch = "test-rust-build", features = ["freeze-stdlib"], optional = true }
rustpython-stdlib = { git = "https://github.com/Hahihula/RustPython.git", branch = "test-rust-build", features = ["ssl-vendor"], optional = true }
anyhow = "^1.0"
rust_search = "2.1.0"