-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
68 lines (63 loc) · 1.94 KB
/
Copy pathCargo.toml
File metadata and controls
68 lines (63 loc) · 1.94 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
[workspace]
members = [
"binoc-sdk",
"binoc-core",
"binoc-stdlib",
"binoc-cli",
"binoc-python",
"binoc-abi-canary",
"model-plugins/binoc-sqlite",
"model-plugins/binoc-row-reorder",
"model-plugins/binoc-stat-binary",
"model-plugins/binoc-excel",
"model-plugins/binoc-parquet",
"model-plugins/binoc-avro",
"model-plugins/binoc-dbf",
"model-plugins/binoc-binformats",
"model-plugins/binoc-xml",
"model-plugins/binoc-shapefile",
]
default-members = [
"binoc-sdk",
"binoc-core",
"binoc-stdlib",
"binoc-cli",
"binoc-abi-canary",
"model-plugins/binoc-sqlite",
"model-plugins/binoc-row-reorder",
"model-plugins/binoc-stat-binary",
"model-plugins/binoc-excel",
"model-plugins/binoc-parquet",
"model-plugins/binoc-avro",
"model-plugins/binoc-dbf",
"model-plugins/binoc-binformats",
"model-plugins/binoc-xml",
"model-plugins/binoc-shapefile",
]
resolver = "2"
# Optimized build that keeps symbols + line numbers for sampling profilers
# (samply). Use via `cargo build --profile profiling` or `just profile-diff`;
# see docs/core-developers/howto/performance-optimization.md.
[profile.profiling]
inherits = "release"
debug = "line-tables-only"
[workspace.package]
version = "0.2.0"
edition = "2021"
rust-version = "1.95"
license = "MIT"
repository = "https://github.com/harvard-lil/binoc"
homepage = "https://github.com/harvard-lil/binoc"
documentation = "https://github.com/harvard-lil/binoc/tree/main/docs"
[workspace.dependencies]
binoc-sdk = { path = "binoc-sdk" }
binoc-core = { path = "binoc-core" }
binoc-stdlib = { path = "binoc-stdlib" }
binoc-cli = { path = "binoc-cli" }
binoc-dbf = { path = "model-plugins/binoc-dbf" }
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.150"
tempfile = "3.26.0"
pyo3 = { version = "0.29.0", features = ["extension-module", "abi3-py310"] }
[patch.crates-io]
sas_xport = { path = "vendor/sas_xport" }