Skip to content

Commit

Permalink
Use locally-linked ciborium and coset for other crates
Browse files Browse the repository at this point in the history
This commit is required to prevent a possible compatibility issue.

Signed-off-by: Changho Choi <[email protected]>
  • Loading branch information
zpzigi754 committed Mar 22, 2024
1 parent d1431f9 commit 2d0241e
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ description = "Command Line Interface for Islet"
[dependencies]
cca_token = { path = "../lib/cca-token" }
cfg-if = "1.0"
ciborium = "*"
ciborium = { version = "*", path = "../third-party/ciborium/ciborium" }
clap = { version = "*", features = ["derive"] }
colored = "*"
hex = "*"
Expand Down
2 changes: 1 addition & 1 deletion hes/islet-hes-host-app/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ edition = "2021"
clap = { version = "4.3.0", features = ["derive"] }
islet-hes = {version = "*", path = "../islet-hes"}
tinyvec = "*"
coset = "*"
coset = { version = "*", path = "../../third-party/coset" }
hex = "*"
daemonize = "*"
4 changes: 2 additions & 2 deletions hes/islet-hes/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ p256 = { version = "*", default-features = false, features = ["alloc", "ecdsa"]
p384 = { version = "*", default-features = false, features = ["alloc", "ecdsa"] }
ecdsa = "*"
hkdf = "*"
ciborium = { version = "*", default-features = false }
coset = "*"
ciborium = { version = "*", default-features = false, path = "../../third-party/ciborium/ciborium" }
coset = { version = "*", path = "../../third-party/coset" }
4 changes: 2 additions & 2 deletions lib/cca-token/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ edition = "2021"
authors = ["Islet Contributors"]

[dependencies]
ciborium = "*"
ciborium = { version = "*", path = "../../third-party/ciborium/ciborium" }
cose = { path = "../cose" }
coset = "*"
coset = { version = "*", path = "../../third-party/coset" }
ecdsa = "*"
hex = "*"
serde = { version = "1.0", features = ["derive"] }
4 changes: 2 additions & 2 deletions lib/cose/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ authors = ["Islet Contributors"]
edition = "2021"

[dependencies]
ciborium = "*"
coset = "*"
ciborium = { version = "*", path = "../../third-party/ciborium/ciborium" }
coset = { version = "*", path = "../../third-party/coset" }
hex = "*"
p256 = "*"
p384 = "*"

0 comments on commit 2d0241e

Please sign in to comment.