-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
33 lines (27 loc) · 880 Bytes
/
Cargo.toml
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
# Copyright 2023 Salesforce, Inc. All rights reserved.
[package]
name = "data_caching"
version = "1.0.0"
rust-version = "1.74.0"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[package.metadata.anypoint]
group_id = "be2ec5ed-c0fc-4085-b417-4fa6fdd664e5"
definition_asset_id = "data-caching"
implementation_asset_id = "data-caching-flex"
[dependencies]
pdk = { version = "1.0.0", registry = "anypoint" }
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0", default-features = false, features = ["alloc"] }
anyhow = "1.0"
chrono = {version = "0.4.26", features = ["serde"] }
[dev-dependencies]
pdk-test = { version = "1.0.0", registry = "anypoint" }
httpmock = "0.6"
reqwest = "0.11"
[lib]
crate-type = ["cdylib"]
[profile.release]
lto = true
opt-level = 'z'
strip = "debuginfo"