-
-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (24 loc) · 1.08 KB
/
Cargo.toml
File metadata and controls
28 lines (24 loc) · 1.08 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
[package]
name = "pythonize"
version = "0.28.0"
authors = ["David Hewitt <1939362+davidhewitt@users.noreply.github.com>"]
edition = "2021"
rust-version = "1.83"
license = "MIT"
description = "Serde Serializer & Deserializer from Rust <--> Python, backed by PyO3."
homepage = "https://github.com/davidhewitt/pythonize"
repository = "https://github.com/davidhewitt/pythonize"
documentation = "https://docs.rs/crate/pythonize/"
[dependencies]
serde = { version = "1.0", default-features = false, features = ["std"] }
serde_json = { version = "1.0", optional = true, default-features = false, features = ["std"] }
pyo3 = { version = "0.28", default-features = false }
[dev-dependencies]
serde = { version = "1.0", default-features = false, features = ["derive"] }
pyo3 = { version = "0.28", default-features = false, features = ["auto-initialize", "macros", "py-clone"] }
serde_json = { version = "1.0", default-features = false, features = ["std"] }
serde_bytes = "0.11"
maplit = "1.0.2"
serde_path_to_error = "0.1.15"
[features]
arbitrary_precision = ["serde_json", "serde_json/arbitrary_precision"]