You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
See the [documentation][docs-url] for more information and examples.
95
+
96
+
## Minimum supported Rust version (MSRV)
97
+
98
+
This crate requires a Rust version of 1.65.0 or higher. Increases in MSRV will be considered a semver non-breaking API change and require a version increase (PATCH until 1.0.0, MINOR after 1.0.0).
99
+
100
+
## Outlook
34
101
35
102
### Planned Features
36
103
@@ -62,38 +129,6 @@ Please check out the documentation [here][docs-url].
See the [documentation][docs-url] and the [examples](examples) for more information.
92
-
93
-
## Minimum supported Rust version (MSRV)
94
-
95
-
This crate requires a Rust version of 1.65.0 or higher. Increases in MSRV will be considered a semver non-breaking API change and require a version increase (PATCH until 1.0.0, MINOR after 1.0.0).
96
-
97
132
## Contributing
98
133
99
134
If you find any bugs or have suggestions for improvement, please open a new issue or submit a pull request.
Copy file name to clipboardExpand all lines: src/lib.rs
+24-2Lines changed: 24 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,28 @@
1
-
//! # quantrs
2
1
//!
3
-
//! A tiny Rust library for options pricing, portfolio optimization, and risk analysis.
2
+
//! This crate is designed to be simple and easy to use library for options pricing, portfolio optimization, and risk analysis. It is not intended to be a full-fledged quantitative finance library.
3
+
//! The goal is to provide library for pricing options, calculating greeks, and performing basic risk analysis without the need to write complex code or have a PhD in reading quantlib documentation.
4
+
//! The library is still in the early stages of development, and many features are not yet implemented.
5
+
//!
6
+
//! There are no benchmarks yet, but it is expected to be faster than FinancePy, optlib, QuantScale and easier to use than RustQuant or QuantLib.
7
+
//!
8
+
//! ## Options Pricing
9
+
//!
10
+
//! For now quantrs only supports options pricing. The following features are available:
0 commit comments