-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
140 lines (125 loc) · 5.5 KB
/
Copy pathCargo.toml
File metadata and controls
140 lines (125 loc) · 5.5 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
[workspace]
resolver = "3"
members = [
"crates/orbit-core",
"crates/orbit-proto",
"crates/orbit-etl",
"crates/orbit-geo",
"crates/eo-core",
"crates/eo-io",
"crates/eo-kernel",
"crates/eo-catalog",
"crates/eo-mask",
"crates/eo-vector",
"crates/eo-process",
"crates/orbit-cache",
"crates/orbit-resilience",
"crates/orbit-observability",
"crates/orbit-config",
"apps/orbit-server",
"apps/orbit-cli",
"apps/orbit-openeo",
]
[workspace.package]
version = "0.1.0"
edition = "2024"
# MSRV bumped 1.85 → 1.88 (2026-06-03): `time` 0.3.47 — the fix for
# RUSTSEC-2026-0009 — requires Rust 1.88.
rust-version = "1.88"
license = "MIT OR Apache-2.0"
authors = ["NU"]
description = "orbit — multi-domain Rust platform (ETL · LLM agent · satellite/geo)"
repository = "https://github.com/NU/orbit-rs"
[workspace.dependencies]
# async
tokio = { version = "1", features = ["rt", "macros", "sync", "time"] }
tokio-stream = "0.1"
futures = "0.3"
async-trait = "0.1"
# grpc / proto
tonic = "0.14"
tonic-build = "0.14"
tonic-prost-build = "0.14"
prost = "0.14"
prost-types = "0.14"
tonic-prost = "0.14"
# data
polars = { version = "0.53", features = ["lazy", "csv", "parquet", "json", "sql", "dtype-categorical", "dtype-date", "dtype-datetime"] }
sqlx = { version = "0.8", features = ["sqlite", "runtime-tokio", "macros", "migrate", "uuid", "time", "json"] }
# serialization
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_yaml = "0.9"
# errors / logging
thiserror = "2"
anyhow = "1"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
# graph algorithms (process-graph topological walk, cycle detection)
petgraph = "0.8"
# misc
clap = { version = "4", features = ["derive", "env"] }
uuid = { version = "1", features = ["v4", "serde"] }
time = { version = "0.3", features = ["serde", "macros", "formatting"] }
indicatif = "0.17"
dashmap = "6"
once_cell = "1"
parking_lot = "0.12"
hex = "0.4"
# http client — single workspace pin so orbit-openeo + orbit-geo share one
# reqwest/hyper/rustls tree (A15a). 0.13 uses `rustls` (was `rustls-tls` in 0.12).
reqwest = { version = "0.13", default-features = false, features = ["json", "rustls", "gzip"] }
# internal
orbit-core = { path = "crates/orbit-core", version = "0.1.0" }
orbit-proto = { path = "crates/orbit-proto", version = "0.1.0" }
orbit-etl = { path = "crates/orbit-etl", version = "0.1.0" }
eo-core = { path = "crates/eo-core", version = "0.1.0" }
eo-io = { path = "crates/eo-io", version = "0.1.0" }
eo-kernel = { path = "crates/eo-kernel", version = "0.1.0" }
eo-catalog = { path = "crates/eo-catalog", version = "0.1.0" }
eo-mask = { path = "crates/eo-mask", version = "0.1.0" }
eo-vector = { path = "crates/eo-vector", version = "0.1.0" }
eo-process = { path = "crates/eo-process", version = "0.1.0" }
orbit-cache = { path = "crates/orbit-cache", version = "0.1.0" }
orbit-resilience = { path = "crates/orbit-resilience", version = "0.1.0" }
orbit-observability = { path = "crates/orbit-observability", version = "0.1.0" }
orbit-config = { path = "crates/orbit-config", version = "0.1.0" }
orbit-geo = { path = "crates/orbit-geo", version = "0.1.0" }
# Phase 4 (orbit-geo) — STAC + raster stack. Uncomment when the crate lands.
# See ../../13-geo-satellite/02-stac-sentinel2-2026.md for details.
# stac = "0.17" # core STAC types, async built-in
# stac-io = "0.5" # I/O + stac-geoparquet
# stac-extensions = "0.5" # eo/sar/proj/sentinel-2 extensions
# stac-api = "0.8" # STAC API spec types
# stac-client = "0.4" # async STAC API client
# stac-validate = "0.4" # JSON Schema validation
# stac-duckdb = "0.5" # offline GeoParquet catalog queries
# stac-server = "0.5" # Phase 6: serve STAC API from orbit-server
# gdal = "0.19" # raster I/O + warp + reproject (needs libgdal ≥ 3.6)
# gdal-src = "0.3" # optional: static-linked GDAL (upstream production pattern)
# async-tiff = { version = "0.3", features = ["ndarray"] } # cloud-native async TIFF
# proj4rs = "0.2" # pure-Rust projections
# proj = "0.27" # libproj wrapper (fallback)
# zarrs = { version = "0.23", features = ["object_store", "zstd", "blosc"] }
# zarrs_icechunk = "0.5" # transactional Zarr storage
# object_store = { version = "0.13", features = ["aws", "gcp", "azure", "http"] }
# geoarrow-array = "0.5" # GeoArrow vector arrays
# geoparquet = "0.5" # GeoParquet 1.1
# cog3pio = { git = "https://github.com/weiji14/cog3pio", rev = "<pin-when-stable>" }
[workspace.lints.rust]
unused_must_use = "deny"
[workspace.lints.clippy]
pedantic = { level = "warn", priority = -1 }
unwrap_used = "deny"
expect_used = "deny"
todo = "warn"
dbg_macro = "deny"
module_name_repetitions = "allow"
missing_errors_doc = "allow"
[profile.release]
lto = "thin"
codegen-units = 1
strip = "debuginfo"
opt-level = 3
[profile.dev]
opt-level = 1