Skip to content

Local dependency in Cargo.toml / Running the project locallyΒ #14

@AkshatGiri

Description

@AkshatGiri

Hey I'm trying to run rustpush locally to try out the test.rs.

Noticed that there are a few local dependencies in Cargo.toml

Specifically these ones

open-absinthe = { path = "/home/tae/Documents/open-absinthe", optional = true, features = ["serde"] }
icloud_auth = { path = "/home/tae/Documents/GitHub/apple-private-apis/icloud-auth" }
omnisette = { path = "/home/tae/Documents/GitHub/apple-private-apis/omnisette", features = ["remote-clearadi"] }

I found icloud_auth and omnisette here - https://github.com/OpenBubbles/apple-private-apis

however I can't seem to find open-absinthe anywhere. Could you point me to where I can find that dependency.

Also it might be worth changing the absolute paths to a relative path like so

icloud_auth = { path = "../apple-private-apis/icloud-auth" }
omnisette = { path = "../apple-private-apis/omnisette", features = ["remote-clearadi"] }
open-absinthe = { path = "../open-absinthe", optional = true, features = ["serde"] }

Once I get it working locally, happy to push a pr for the change.

Thanks :)

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions