-
-
Notifications
You must be signed in to change notification settings - Fork 62
Expand file tree
/
Copy pathCargo.toml
More file actions
56 lines (51 loc) · 1.49 KB
/
Cargo.toml
File metadata and controls
56 lines (51 loc) · 1.49 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
[workspace]
members = [
"palomar-sync",
"rsky-common",
"rsky-crypto",
"rsky-feedgen",
"rsky-firehose",
"rsky-identity",
"rsky-jetstream-subscriber",
"rsky-labeler",
"rsky-lexicon",
"rsky-pds",
"rsky-relay",
"rsky-repo",
"rsky-satnav",
"rsky-syntax",
"rsky-video",
"rsky-wintermute",
]
resolver = "2"
[workspace.dependencies]
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.11.1", features = ["serde-codec"] }
ipld-core = "0.4.2"
serde_cbor = "0.11.2"
serde_bytes = "0.11.15"
tokio = { version = "1.28.2",features = ["full"] }
tokio-util = "0.7"
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.8"}
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.2"}
rsky-repo = {path = "rsky-repo", version = "0.0.2"}
rsky-firehose = {path = "rsky-firehose", version = "0.2.1"}
[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"