File tree Expand file tree Collapse file tree 3 files changed +19
-7
lines changed
Expand file tree Collapse file tree 3 files changed +19
-7
lines changed Original file line number Diff line number Diff line change @@ -6,12 +6,6 @@ export const EnvVar: Provider = {
66 logo : EnvVarSvg ,
77 excludeFromLandingPage : true ,
88 technologies : [
9- {
10- technology : 'JavaScript' ,
11- vendorOfficial : true ,
12- href : 'https://github.com/open-feature/js-sdk-contrib/tree/main/libs/providers/env-var' ,
13- category : [ 'Server' ] ,
14- } ,
159 {
1610 technology : 'Go' ,
1711 vendorOfficial : true ,
@@ -24,5 +18,17 @@ export const EnvVar: Provider = {
2418 href : 'https://github.com/open-feature/java-sdk-contrib/tree/main/providers/env-var' ,
2519 category : [ 'Server' ] ,
2620 } ,
21+ {
22+ technology : 'JavaScript' ,
23+ vendorOfficial : true ,
24+ href : 'https://github.com/open-feature/js-sdk-contrib/tree/main/libs/providers/env-var' ,
25+ category : [ 'Server' ] ,
26+ } ,
27+ {
28+ technology : 'Rust' ,
29+ vendorOfficial : true ,
30+ href : 'https://github.com/open-feature/rust-sdk-contrib/tree/main/crates/env-var' ,
31+ category : [ 'Server' ] ,
32+ } ,
2733 ] ,
2834} ;
Original file line number Diff line number Diff line change @@ -23,5 +23,11 @@ export const Flipt: Provider = {
2323 href : 'https://github.com/open-feature/js-sdk-contrib/tree/main/libs/providers/flipt' ,
2424 category : [ 'Server' ] ,
2525 } ,
26+ {
27+ technology : 'Rust' ,
28+ vendorOfficial : true ,
29+ href : 'https://github.com/open-feature/rust-sdk-contrib/tree/main/crates/flipt' ,
30+ category : [ 'Server' ] ,
31+ } ,
2632 ] ,
2733} ;
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ export type EcosystemElement = {
1212 category : Category [ ] ;
1313} ;
1414
15- export type Technology = 'JavaScript' | 'Java' | 'Go' | 'PHP' | '.NET' | 'Kotlin' | 'Python' | 'Swift' ;
15+ export type Technology = 'JavaScript' | 'Java' | 'Go' | 'PHP' | '.NET' | 'Kotlin' | 'Python' | 'Swift' | 'Rust' ;
1616export type Category = 'Server' | 'Client' ;
1717export type Type = 'Hook' | 'Provider' | 'SDK' ;
1818
You can’t perform that action at this time.
0 commit comments