|
| 1 | +[package] |
| 2 | +name = "evm_icp_bridge" |
| 3 | +description = "An Internet Computer canister to bridge ERC-20 & ICRC tokens." |
| 4 | +publish = false |
| 5 | +repository = "https://github.com/ldclabs/ic-panda/tree/main/src/evm_icp_bridge" |
| 6 | +version.workspace = true |
| 7 | +edition.workspace = true |
| 8 | +keywords.workspace = true |
| 9 | +categories.workspace = true |
| 10 | +license.workspace = true |
| 11 | + |
| 12 | +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html |
| 13 | + |
| 14 | +[lib] |
| 15 | +crate-type = ["cdylib"] |
| 16 | + |
| 17 | +[dependencies] |
| 18 | +alloy = { workspace = true } |
| 19 | +base64 = { workspace = true } |
| 20 | +candid = { workspace = true } |
| 21 | +ciborium = { workspace = true } |
| 22 | +ic-cdk = { workspace = true } |
| 23 | +ic-cdk-timers = { workspace = true } |
| 24 | +ic-stable-structures = { workspace = true } |
| 25 | +ic-http-certification = { workspace = true } |
| 26 | +ic-dummy-getrandom-for-wasm = { workspace = true } |
| 27 | +ic_auth_types = { workspace = true } |
| 28 | +ic_cose_types = { workspace = true } |
| 29 | +ic-secp256k1 = { workspace = true } |
| 30 | +lazy_static = { workspace = true } |
| 31 | +once_cell = { workspace = true } |
| 32 | +url = { workspace = true } |
| 33 | +serde = { workspace = true } |
| 34 | +serde_bytes = { workspace = true } |
| 35 | +serde_json = { workspace = true } |
| 36 | +k256 = { workspace = true, features = ["ecdsa"] } |
0 commit comments