-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
55 lines (47 loc) · 1.42 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[package]
name = 'pallet-product-tracking'
version = '2.0.0'
description = 'Substrate Enterprise Sample - Product Tracking Pallet'
edition = '2018'
authors = ['Substrate DevHub <https://github.com/substrate-developer-hub>']
homepage = 'https://substrate.dev'
repository = 'https://github.com/paritytech/substrate/'
license = 'Unlicense'
[package.metadata.docs.rs]
targets = ['x86_64-unknown-linux-gnu']
[dependencies.codec]
default-features = false
features = ['derive']
package = 'parity-scale-codec'
version = '1.3.4'
[dependencies.fixed]
default-features = false
git = "https://github.com/encointer/substrate-fixed"
package = "substrate-fixed"
tag = "v0.5.4+sub_v0.1"
version = "0.5.4"
[dependencies.product-registry]
default-features = false
package = 'pallet-product-registry'
version = '2.0.0'
[dependencies.timestamp]
default_features = false
package = 'pallet-timestamp'
version = '2.0.0'
[dependencies]
frame-support = { default-features = false, version = '2.0.0' }
frame-system = { default-features = false, version = '2.0.0' }
sp-core = { default-features = false, version = '2.0.0' }
sp-io = { default-features = false, version = '2.0.0' }
sp-runtime = { default-features = false, version = '2.0.0' }
[dev-dependencies]
hex = { default-features = false, version = '0.4.2' }
[features]
default = ['std']
std = [
'codec/std',
'frame-support/std',
'frame-system/std',
'timestamp/std',
'product-registry/std'
]