File: Cargo.toml

package info (click to toggle)
python-taskchampion-py 2.0.2-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 360 kB
  • sloc: python: 682; makefile: 15
file content (29 lines) | stat: -rw-r--r-- 575 bytes parent folder | download
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 = "taskchampion-py"
version = "2.0.2"
edition = "2021"
# This should match the MSRV of the `taskchampion` crate.
rust-version = "1.81.0"

[features]
default = []

# Support for all sync solutions
sync = ["server-sync", "server-gcp"]
# Support for sync to a server
server-sync = []
# Support for sync to GCP
server-gcp = []

[package.metadata.maturin]
name = "taskchampion"

[lib]
name = "taskchampion"
crate-type = ["cdylib"]
doc = false

[dependencies]
pyo3 = { version = ">=0.22.6", features = ["chrono"] }
chrono = "*"
taskchampion = { version = "=2.0.2" }