mirror of
https://github.com/blacksky-algorithms/rsky.git
synced 2025-03-14 13:59:02 +00:00
40 lines
1.5 KiB
TOML
40 lines
1.5 KiB
TOML
[workspace]
|
|
members = [ "rsky-common", "rsky-crypto","rsky-feedgen", "rsky-firehose", "rsky-identity", "rsky-labeler", "rsky-lexicon", "rsky-pds", "rsky-syntax", "rsky-jetstream-subscriber", "rsky-repo", "cypher/backend", "cypher/frontend", "rsky-satnav"]
|
|
resolver = "2"
|
|
|
|
[workspace.dependencies]
|
|
cargo = { version = "0.84.0",features = ["vendored-openssl"] }
|
|
serde = { version = "1.0.160", features = ["derive"] }
|
|
serde_derive = "^1.0"
|
|
serde_ipld_dagcbor = { version = "0.6.1" ,features = ["codec"]}
|
|
lexicon_cid = { package = "cid", version = "0.10.1", features = ["serde-codec"] }
|
|
libipld = "0.16.0"
|
|
serde_cbor = "0.11.2"
|
|
serde_bytes = "0.11.15"
|
|
tokio = { version = "1.28.2",features = ["full"] }
|
|
sha2 = "0.10.8"
|
|
rand = "0.8.5"
|
|
rand_core = "0.6.4"
|
|
secp256k1 = { version = "0.28.2", features = ["global-context", "serde", "rand", "hashes","rand-std"] }
|
|
serde_json = { version = "1.0.96",features = ["preserve_order"] }
|
|
rsky-lexicon = {path = "rsky-lexicon", version = "0.2.7"}
|
|
rsky-identity = {path = "rsky-identity", version = "0.1.0"}
|
|
rsky-crypto = {path = "rsky-crypto", version = "0.1.1"}
|
|
rsky-syntax = {path = "rsky-syntax", version = "0.1.0"}
|
|
rsky-common = {path = "rsky-common", version = "0.1.1"}
|
|
rsky-repo = {path = "rsky-repo", version = "0.0.1"}
|
|
rsky-firehose = {path = "rsky-firehose", version = "0.2.0"}
|
|
|
|
[profile.release]
|
|
debug = 2 # Or any level from 0 to 2
|
|
|
|
[profile.wasm-dev]
|
|
inherits = "dev"
|
|
opt-level = 1
|
|
|
|
[profile.server-dev]
|
|
inherits = "dev"
|
|
|
|
[profile.android-dev]
|
|
inherits = "dev"
|