-
Notifications
You must be signed in to change notification settings - Fork 71
Expand file tree
/
Copy pathCargo.toml
More file actions
56 lines (53 loc) · 1.34 KB
/
Cargo.toml
File metadata and controls
56 lines (53 loc) · 1.34 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 = [
"src/console",
"src/mission_control",
"src/satellite",
"src/observatory",
"src/orbiter",
"src/sputnik",
"src/libs/shared",
"src/libs/satellite",
"src/libs/macros",
"src/libs/utils",
"src/libs/collections",
"src/libs/storage",
"src/libs/cdn",
"src/libs/auth",
"src/tests/fixtures/test_satellite"
]
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.20"
ic-cdk = "0.19.0"
ic-cdk-macros = "0.19.0"
ic-ledger-types = "0.16.0"
icrc-ledger-types = "0.1.11"
ic-cdk-timers = "1.0.0"
ic-stable-structures = "0.7.0"
ic-certification = "3.0.3"
ic-representation-independent-hash = "3.0.3"
serde = "1.0.228"
serde_cbor = "0.11.2"
serde_json = "1.0.149"
serde_bytes = "0.11.19"
ciborium = "0.2.2"
sha2 = "0.10.8"
hex = "0.4.3"
base64 = "0.22.1"
url = "2.5.4"
regex = "1.11.1"
getrandom = "0.3.2"
rand = { version = "0.9.1", features = ["os_rng"] }
[patch.crates-io]
junobuild-shared = { path = "./src/libs/shared" }
junobuild-collections = { path = "./src/libs/collections" }
junobuild-storage = { path = "./src/libs/storage" }
junobuild-cdn = { path = "./src/libs/cdn" }
junobuild-auth = { path = "./src/libs/auth" }
junobuild-utils = { path = "./src/libs/utils" }