-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (27 loc) · 899 Bytes
/
Copy pathCargo.toml
File metadata and controls
33 lines (27 loc) · 899 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
31
32
33
[package]
name = "datamodel-rs"
version = "0.1.0"
edition = "2021"
license = "MIT"
homepage = "https://github.com/phenobarbital/python-datamodel"
repository = "https://github.com/phenobarbital/python-datamodel.git"
description = "A Python library for building data models using dataclasses."
readme = "README.md"
rust-version = "1.84.0"
[workspace]
members = [
"datamodel/rs_parsers",
]
resolver = "2"
edition = "2021"
[workspace.dependencies]
pyo3 = { version = "0.23.3", features = ["generate-import-lib", "extension-module"] }
serde_json = {version = "1.0.134", features = ["arbitrary_precision", "preserve_order"]}
serde = { version = "1.0.217", features = ["derive"] }
hex = "0.4.3"
[dependencies]
pyo3 = { version = "0.23.3", features = ["generate-import-lib", "extension-module"] }
[features]
extension-module = ["pyo3/extension-module"]
[profile.dev]
opt-in = ["unstable-preview"]