-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
59 lines (57 loc) · 2.32 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
56
57
58
59
[workspace]
members = ["crates/*"]
exclude = ["examples"]
resolver = "2"
[workspace.package]
version = "0.1.0"
rust-version = "1.79"
edition = "2021"
license = "MIT OR Apache-2.0"
authors = ["Aursen"]
repository = "https://github.com/rust-lang/rust-analyzer"
[workspace.dependencies]
anchor-lang-idl-spec = "0.1.0"
borsh = "1.5"
bytemuck = "1.21.0"
cargo-manifest = "0.17"
five8_const = "0.1.3"
trybuild = "1.0"
typhoon = { version = "0.1.0", path = "crates/lib" }
typhoon-accounts = { version = "0.1.0", path = "crates/accounts" }
typhoon-account-macro = { version = "0.1.0", path = "crates/account-macro" }
typhoon-context = { version = "0.1.0", path = "crates/context" }
typhoon-context-macro = { version = "0.1.0", path = "crates/context-macro" }
typhoon-cpi-generator = { version = "0.1.0", path = "crates/cpi-generator" }
typhoon-cpi-generator-macro = { version = "0.1.0", path = "crates/cpi-generator-macro" }
typhoon-discriminator = { version = "0.1.0", path = "crates/discriminator" }
typhoon-discriminator-macro = { version = "0.1.0", path = "crates/discriminator-macro" }
typhoon-errors = { version = "0.1.0", path = "crates/errors" }
typhoon-handler-macro = { version = "0.1.0", path = "crates/handler-macro" }
typhoon-metadata-extractor = { version = "0.1.0", path = "crates/metadata-extractor" }
typhoon-program = { version = "0.1.0", path = "crates/program" }
typhoon-program-id-macro = { version = "0.1.0", path = "crates/program-id-macro" }
typhoon-syn = { version = "0.1.0", path = "crates/syn" }
typhoon-traits = { version = "0.1.0", path = "crates/traits" }
heck = "0.5.0"
nostd-system-program = { git = "https://github.com/Aursen/nostdinfo-programs" }
num-traits = "0.2"
paste = "1.0"
pinocchio = { git = "https://github.com/febo/pinocchio" }
pinocchio-log = { git = "https://github.com/febo/pinocchio" }
pinocchio-pubkey = { git = "https://github.com/febo/pinocchio" }
pinocchio-system = { git = "https://github.com/febo/pinocchio" }
proc-macro2 = "1.0"
quote = "1.0"
serde_json = "1.0"
sha2 = "0.10.8"
solana-clock = "2.1"
solana-define-syscall = "2.1"
solana-msg = "2.1"
solana-nostd-entrypoint = { git = "https://github.com/cavemanloverboy/solana-nostd-entrypoint", rev = "b752d70" }
solana-program-entrypoint = "2.1"
solana-program-error = "2.1"
solana-pubkey = "2.1"
solana-rent = "2.1"
solana-sysvar-id = "2.1"
syn = "2.0"
thiserror = "2.0"