mirror of
https://github.com/blacksky-algorithms/rsky.git
synced 2025-03-15 21:06:33 +00:00
35 lines
855 B
TOML
35 lines
855 B
TOML
[package]
|
|
name = "rsky-satnav"
|
|
version = "0.1.0"
|
|
authors = ["Rudy Fraser <him@rudyfraser.com>"]
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
getrandom = { version = "0.2", features = ["js"] }
|
|
dioxus = { version = "0.6.0", features = [] }
|
|
wasm-bindgen = "0.2.100"
|
|
web-sys = { version = "0.3.77",features = [
|
|
"File",
|
|
"FileList",
|
|
"HtmlInputElement",
|
|
"EventTarget",
|
|
"Event"] }
|
|
wasm-bindgen-futures = "0.4.50"
|
|
gloo-file = { version = "0.3.0",features = ["futures"] }
|
|
anyhow = "1.0.97"
|
|
dioxus-web = "0.6.3"
|
|
iroh-car = "0.5.1"
|
|
serde_ipld_dagcbor = {workspace = true}
|
|
serde_json = {workspace = true}
|
|
base64 = "0.22.1"
|
|
ipld-core = "0.4.2"
|
|
hex = "0.4"
|
|
|
|
[features]
|
|
default = ["web"]
|
|
web = ["dioxus/web"]
|
|
desktop = ["dioxus/desktop"]
|
|
mobile = ["dioxus/mobile"]
|