Skip to content

Commit e7c66fe

Browse files
omidgithub-actions[bot]
authored andcommitted
Update README.md
1 parent b721821 commit e7c66fe

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

README.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ So far we have the following features:
1313

1414
- 18 date time functions
1515
- 26 text functions
16+
- 26 math functions
1617
- 7 logical functions
1718
- 2 web functions
1819
- plus all arithmetic and comparison operators
@@ -24,8 +25,7 @@ Add this library to your project with `cargo add formula` or add `formula = "*"`
2425
Use it similar to the following code:
2526

2627
```rust
27-
use formula::{Formula, Expr, error::Error};
28-
use anyhow::Result;
28+
use formula::{Formula, Expr, error::Error, Result};
2929

3030
fn main() -> Result<()> {
3131
let formula = Formula::new("=UPPER(TRIM(' Hello '))")?;
@@ -46,6 +46,11 @@ fn main() -> Result<()> {
4646

4747
We would love to have your contribution! Please read our [contributing guidelines](CONTRIBUTING.md) to get started.
4848

49+
### Inspired by
50+
51+
- [formulajs](https://github.com/formulajs/formulajs)
52+
- [hyperformula](https://github.com/handsontable/hyperformula)
53+
4954
### License
5055

5156
This project is licensed under the MIT license. See the [LICENSE](LICENSE.md) file for more info.

0 commit comments

Comments
 (0)