/ Cargo.toml
Cargo.toml
1 [package] 2 publish = false 3 name = "anthol_backend" 4 version = "0.0.1" 5 edition = "2021" 6 7 [lib] 8 crate-type = ["cdylib"] 9 10 [dependencies] 11 shared.workspace = true 12 13 anthol_store.workspace = true 14 anyhow = { workspace = true, features = ["backtrace", "std"] } 15 canbench-rs = { workspace = true, optional = true } 16 candid.workspace = true 17 futures = "0.3.30" 18 ic-cdk = "0.15.0" 19 ic-cdk-macros = "0.15.0" 20 ic-stable-structures = "0.6.7" 21 nestify.workspace = true 22 serde.workspace = true 23 thiserror.workspace = true 24 25 [dev-dependencies] 26 pocket-ic = "6.0.0"