-
Notifications
You must be signed in to change notification settings - Fork 13
/
Cargo.toml
41 lines (38 loc) · 978 Bytes
/
Cargo.toml
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
[workspace]
members = [
"src/console",
"src/mission_control",
"src/satellite",
"src/observatory",
"src/orbiter",
"src/libs/shared",
"src/libs/satellite",
"src/libs/macros",
"src/libs/utils",
"src/libs/collections",
"src/libs/storage"]
resolver = "2"
[workspace.package]
authors = ["David Dal Busco <https://daviddalbusco.com>"]
edition = "2021"
repository = "https://github.com/junobuild/juno"
homepage = "https://juno.build"
[workspace.dependencies]
candid = "0.10.2"
ic-cdk = "0.17.0"
ic-cdk-macros = "0.17.0"
ic-ledger-types = "0.14.0"
icrc-ledger-types = "0.1.6"
ic-cdk-timers = "0.11.0"
ic-stable-structures = "0.6.4"
serde = "1.0.190"
serde_cbor = "0.11.2"
serde_json = "1.0.111"
ciborium = "0.2.1"
sha2 = "0.10.7"
hex = "0.4.3"
regex = "1.9.3"
[patch.crates-io]
junobuild-shared = { path = "./src/libs/shared" }
junobuild-collections = { path = "./src/libs/collections" }
junobuild-storage = { path = "./src/libs/storage" }