-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (34 loc) · 1.28 KB
/
Cargo.toml
File metadata and controls
40 lines (34 loc) · 1.28 KB
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
[package]
name = "pyflow"
version = "0.3.5"
authors = ["David O'Connor <the_alchemist@fastmail.com>"]
description = "A modern Python installation and dependency manager"
license = "MIT"
homepage = "https://github.com/David-OConnor/pyflow"
repository = "https://github.com/David-OConnor/pyflow"
readme = "README.md"
edition = "2024"
keywords = ["python","dependency", "packaging", "build"]
categories = ["development-tools::build-utils"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
# todo: Clean up this dependency set
[dependencies]
termcolor = "1.4.1"
flate2 = "1.0.32"
rust-ini = "0.21.3"
xz2 = "0.1.7"
regex = "1.12.3"
ring = "0.17.8" # OpenSSL. Todo: Do we need/want this?
# We disable, by omission, suggestions, so it doesn't think `pyflow ipython` is a misspelling
# of `pyflow python`.
structopt = { version = "0.3.26", default-features = false, features = ["color", "wrap_help", "doc"] }
serde = {version = "1.0.208", features = ["derive"]}
tar = "0.4.44"
toml = "1.0.7"
zip = "8.3.0"
nom = "8.0.0"
# rustls-tls is pure Rust — no system OpenSSL needed, works on all platforms including Windows.
reqwest = { version = "0.13.2", default-features = false, features = ["blocking", "json", "rustls"] }
[dev-dependencies]
rstest = "0.23"
indoc = "2"