solana-flux-aggregator/program/Cargo.toml

33 lines
663 B
TOML
Raw Normal View History

2020-11-26 14:19:50 -08:00
[package]
name = "flux-aggregator"
version = "0.1.0"
authors = ["czl1378 <czl1378@126.com>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
borsh = "0.7.1"
borsh-derive = "0.7.1"
2020-11-26 14:19:50 -08:00
solana-program = "1.4.8"
2020-11-30 09:41:09 -08:00
spl-token = { version = "3.0.0", features = [ "no-entrypoint" ] }
2020-11-26 14:19:50 -08:00
byteorder = "1.3"
thiserror = "1.0"
num-derive = "0.3"
num-traits = "0.2"
2020-11-27 01:38:49 -08:00
num_enum = "0.5.1"
2021-01-19 19:45:54 -08:00
hex = "0.4"
2020-11-26 14:19:50 -08:00
[dev-dependencies]
solana-sdk = "1.4.8"
2021-01-19 19:45:54 -08:00
anyhow = "1.0"
2020-11-26 14:19:50 -08:00
[lib]
crate-type = ["cdylib", "lib"]
[features]
program = []
no-entrypoint = []
2020-11-26 14:19:50 -08:00
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]