-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (27 loc) · 753 Bytes
/
Copy pathCargo.toml
File metadata and controls
30 lines (27 loc) · 753 Bytes
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
[package]
name = "gitpure"
version = "0.0.0"
edition = "2024"
authors = ["Max Dymond <cmeister2@gmail.com>"]
license = "MIT"
description = "A Python git library implemented in Rust using gitoxide"
readme = "README.md"
homepage = "https://github.com/cmeister2/gitpure"
repository = "https://github.com/cmeister2/gitpure"
documentation = "https://github.com/cmeister2/gitpure"
keywords = ["git", "python", "rust", "gitoxide", "version-control"]
categories = ["development-tools", "api-bindings"]
[lib]
name = "gitpure"
crate-type = ["cdylib"]
[dependencies]
pyo3 = "0.29.0"
[dependencies.gix]
version = "0.85.0"
default-features = false
features = [
"blocking-http-transport-reqwest-rust-tls",
"parallel",
"sha1",
"worktree-mutation"
]