-
Notifications
You must be signed in to change notification settings - Fork 150
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Include low-level sdk in rustdoc/typedoc (#429)
* Include low-level sdk in rustdoc/typedoc * Change navbar organization (#436) Co-authored-by: calintje <[email protected]> --------- Co-authored-by: Calin <[email protected]> Co-authored-by: calintje <[email protected]>
- Loading branch information
1 parent
95052f9
commit fa72f0a
Showing
15 changed files
with
91 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,5 +5,6 @@ members = [ | |
] | ||
exclude = [ | ||
"rust-sdk", | ||
"ts-sdk" | ||
"ts-sdk", | ||
"docs" | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
[package] | ||
name = "orca_whirlpools_docs" | ||
version = "0.1.0" | ||
publish = false | ||
edition = "2021" | ||
|
||
[dependencies] | ||
orca_whirlpools_core = { path = "../../rust-sdk/core", features = ["wasm", "floats"] } | ||
orca_whirlpools_client = { path = "../../rust-sdk/client", features = ["anchor", "core-types"] } | ||
orca_whirlpools = { path = "../../rust-sdk/whirlpool" } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Rust |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
#![doc = include_str!("../README.md")] | ||
|
||
pub mod orca_whirlpools_core { | ||
#![doc = include_str!("../../../rust-sdk/core/README.md")] | ||
pub use orca_whirlpools_core::*; | ||
} | ||
|
||
pub mod orca_whirlpools_client { | ||
#![doc = include_str!("../../../rust-sdk/client/README.md")] | ||
pub use orca_whirlpools_client::*; | ||
} | ||
|
||
pub mod orca_whirlpools { | ||
#![doc = include_str!("../../../rust-sdk/whirlpool/README.md")] | ||
pub use orca_whirlpools::*; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Typescript |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,12 @@ | ||
{ | ||
"entryPoints": ["../../ts-sdk/whirlpool/src/index.ts"], | ||
"entryPointStrategy": "resolve", | ||
"entryPoints": [ | ||
"../../ts-sdk/core", | ||
"../../ts-sdk/client", | ||
"../../ts-sdk/whirlpool" | ||
], | ||
"entryPointStrategy": "packages", | ||
"githubPages": false, | ||
"out": "dist/ts" | ||
"skipErrorChecking": true, | ||
"out": "dist/ts", | ||
"readme": "./README.md" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"entryPoints": [ | ||
"./src/index.ts" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"entryPoints": [ | ||
"./dist/nodejs/orca_whirlpools_core_js_bindings.d.ts" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"entryPoints": [ | ||
"./src/index.ts" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters