-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (26 loc) · 701 Bytes
/
Cargo.toml
File metadata and controls
31 lines (26 loc) · 701 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
[workspace]
members = [
"justcode-core",
"justcode-derive",
"justcode-python"
]
resolver = "2"
[workspace.package]
version = "0.3.0"
edition = "2024"
authors = ["Reynard Contributors"]
license = "MIT"
repository = "https://github.com/entropy-tamer/justcode"
description = "Compact binary encoder/decoder with space-efficient encoding"
[workspace.dependencies]
# Error handling
thiserror = "2.0.17"
anyhow = "1.0.100"
# Derive macros
syn = { version = "2.0", features = ["full"] }
quote = "1.0.42"
proc-macro2 = "1.0"
# Testing
criterion = { version = "0.7.0", features = ["html_reports"] }
# Python bindings
pyo3 = { version = "0.27.1", features = ["extension-module", "abi3-py38"] }